diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua index 73de94e..7d870ba 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua @@ -7,12 +7,12 @@ return { end, config = function() require("which-key").register({ - { "", "h", desc = "Move to the window on the left" }, - { "", "j", desc = "Move to the window on the bottom" }, - { "", "k", desc = "Move to the window on the top" }, - { "", "l", desc = "Move to the window on the right" }, - { "", ":quitall", desc = "Quit the editor with confirmation" }, - { "", ":write", desc = "Persist the content of the current buffer to the file system" }, + { "", "", desc = "l" }, + { "", "", desc = "h" }, + { "", "", desc = "j" }, + { "", "", desc = ":write" }, + { "", "", desc = ":quitall" }, + { "", "", desc = "k" }, }) end }