diff options
author | 2025-04-20 12:51:13 +0300 | |
---|---|---|
committer | 2025-04-20 12:51:13 +0300 | |
commit | 34a5c33cf6ac5c121933ee941ba6066f81e931fd (patch) | |
tree | bd24c088c5aee8e320535270739217e18f05c7b9 /lua/config | |
parent | fix: keybindings for `mini.move` (diff) | |
download | neovim-configuration-master.tar.gz neovim-configuration-master.tar.bz2 neovim-configuration-master.tar.lz neovim-configuration-master.tar.xz neovim-configuration-master.tar.zst neovim-configuration-master.zip |
Diffstat (limited to '')
-rw-r--r-- | lua/config/plugins/completion.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/config/plugins/completion.lua b/lua/config/plugins/completion.lua index 0bcf7ad..7a02809 100644 --- a/lua/config/plugins/completion.lua +++ b/lua/config/plugins/completion.lua @@ -25,7 +25,10 @@ return { }, keymap = { - ["<S-space>"] = { "show", "show_documentation", "hide_documentation" }, + -- TODO: come up with more convenient keybinding + -- ["<S-space>"] = { "show", "show_documentation", "hide_documentation" }, + + ["<M-->"] = { "show", "show_documentation", "hide_documentation" }, ["<C-e>"] = { "hide", "fallback" }, ["<CR>"] = { "accept", "fallback" }, |