diff options
| author | 2024-07-23 13:59:27 +0200 | |
|---|---|---|
| committer | 2024-07-23 13:59:27 +0200 | |
| commit | 27de2149badbcf51ba46bf4d8724a5643ac64f07 (patch) | |
| tree | c03857035fb8ae701aebf9185cf919ce9fb413f9 /dot_config/nvim/lua/bindings/builtins.lua | |
| parent | fish: add initial completions for pdnsutil (diff) | |
nvim: update to v3 which-key spec
Diffstat (limited to 'dot_config/nvim/lua/bindings/builtins.lua')
| -rw-r--r-- | dot_config/nvim/lua/bindings/builtins.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dot_config/nvim/lua/bindings/builtins.lua b/dot_config/nvim/lua/bindings/builtins.lua index 330666e..1b13f9b 100644 --- a/dot_config/nvim/lua/bindings/builtins.lua +++ b/dot_config/nvim/lua/bindings/builtins.lua @@ -1,7 +1,5 @@ -- document missing builtins -require 'which-key'.register { - ['g'] = { - t = 'Next tab', - T = 'Previous tab', - }, +require 'which-key'.add { + { 'gt', desc = 'Next tab' }, + { 'gT', desc = 'Previous tab' }, } |
