Wrap collapsed nodes as well

pull/275/head
Anton Medvedev 9 months ago
parent 907e68dc61
commit a7249fea5a
No known key found for this signature in database

@ -42,7 +42,11 @@ func wrapAll(n *node, termWidth int) {
} }
} }
} }
n = n.next if n.isCollapsed() {
n = n.collapsed
} else {
n = n.next
}
} }
} }

Loading…
Cancel
Save