From 6a1359055dc9546c235f6470deabf9dbaa0f8e61 Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier <47638216+alexpasmantier@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:41:40 +0100 Subject: [PATCH] refactor(helpbar): hide the top help panel by default (#97) --- .config/config.toml | 5 +++-- README.md | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/config.toml b/.config/config.toml index dc5eca0..c7a3fd3 100644 --- a/.config/config.toml +++ b/.config/config.toml @@ -23,8 +23,9 @@ use_nerd_font_icons = false # │ │ # └───────────────────────────────────────┘ ui_scale = 100 -# Whether to show the top help bar in the UI -show_help_bar = true +# Whether to show the top help bar in the UI by default +# This option can be toggled with the (default) `ctrl-g` keybinding +show_help_bar = false # Where to place the input bar in the UI (top or bottom) input_bar_position = "bottom" diff --git a/README.md b/README.md index 598a9eb..ca47cf5 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ Default keybindings are as follows: | Ctrl + y | Copy the selected entry to the clipboard | | Ctrl + r | Toggle remote control mode | | Ctrl + s | Toggle send to channel mode | +| Ctrl + g | Toggle the help panel | | Esc | Quit the application | These keybindings are all configurable (see [Configuration](#configuration)).