Allow left/right for collapse, more hotkeys

* Use 'b' to toggle fold icon before/after key
* Use 'g' to toggle indentation guide lines
* Cosmetic fixes
This commit is contained in:
2024-10-03 15:29:56 +02:00
parent f023de0198
commit ddfefa124b
4 changed files with 77 additions and 9 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Menu
[$w,$h] = $this->terminal->getSize();
if ($height == 0) {
$height = min($h - 5, count($this->items) + 4);
$height = min($h - 5, count($this->items) + 2);
}
if ($left == 0) {
$left = round(($w - $width) / 2);