feat(library/tactic/proof_state): add empty line between goals, closes #281
This commit is contained in:
parent
b0a7888346
commit
95e843e8ed
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ format proof_state::pp(formatter const & fmt) const {
|
|||
bool first = true;
|
||||
|
||||
for (auto const & g : get_goals()) {
|
||||
if (first) first = false; else r += line();
|
||||
if (first) first = false; else r += line() + line();
|
||||
if (show_goal_names) {
|
||||
r += group(format(g.get_name()) + colon() + nest(indent, line() + g.pp(fmt, m_subst)));
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue