summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorVinegret43 <67828321+Vinegret43@users.noreply.github.com>2021-10-02 15:20:02 +0300
committerGitHub <noreply@github.com>2021-10-02 08:20:02 -0400
commit5e3839ad3255d7056c00d09e479c234b87730ba8 (patch)
treec64f16062563c73571b24d5e4baf5bef866bf610 /config
parent44c1952831abc4bc8496dfd60e72e47dcdc45caa (diff)
Add a help page (#95)
* add basic help page functionality change search_skim keybind * refactor 'run' function, improve sorting * add search functionality for help page improve some comments in tui_help
Diffstat (limited to 'config')
-rw-r--r--config/keymap.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/keymap.toml b/config/keymap.toml
index 606d0c1..a4ae906 100644
--- a/config/keymap.toml
+++ b/config/keymap.toml
@@ -69,7 +69,7 @@ mapcommand = [
{ keys = [ "/" ], command = ":search " },
{ keys = [ "\\" ], command = ":search_glob " },
- { keys = [ "?" ], command = ":search_skim " },
+ { keys = [ "%", "s" ], command = ":search_skim " },
{ keys = [ "n" ], command = "search_next" },
{ keys = [ "N" ], command = "search_prev" },
@@ -86,4 +86,5 @@ mapcommand = [
{ keys = [ "g", "d" ], command = "cd ~/Downloads" },
{ keys = [ "g", "e" ], command = "cd /etc" },
{ keys = [ "g", "h" ], command = "cd ~/" },
+ { keys = [ "?" ], command = "help" }
]