From 185008bf2b03efaf45996e71d84eb1988937fd0d Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Sun, 5 Jan 2025 10:49:54 +0100 Subject: [PATCH] updating old which key mappings --- .../nvim/lua/settings/lazy/plugins/which-key.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 7d870ba..6917fb3 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({ - { "", "", desc = "l" }, - { "", "", desc = "h" }, - { "", "", desc = "j" }, - { "", "", desc = ":write" }, - { "", "", desc = ":quitall" }, - { "", "", desc = "k" }, + { "", "h", }, + { "", "l", }, + { "", "j", }, + { "", ":write", }, + { "", ":quitall", }, + { "", "k", }, }) end }