diff options
author | Daniel RodrÃguez Rivero <[email protected]> | 2022-06-12 10:09:41 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-06-12 10:09:41 +0200 |
commit | 5d964c58848dde02bf04ce67bffe2398d2bbf1a1 (patch) | |
tree | aae568a31420dfb3f32a10437053564359246546 /lua | |
parent | 1d1f7bac658f0c376cdd9e0df691fc4015be14b7 (diff) |
feat(which-key): added search command for colour highlights (#2693)
* feat(which-key): added search command for colour highlights
* chore: review suggestion
Co-authored-by: kylo252 <[email protected]>
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index b1ae6f87..3015781b 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -244,6 +244,7 @@ M.config = function() c = { "<cmd>Telescope colorscheme<cr>", "Colorscheme" }, f = { "<cmd>Telescope find_files<cr>", "Find File" }, h = { "<cmd>Telescope help_tags<cr>", "Find Help" }, + H = { "<cmd>Telescope highlights<cr>", "Find highlight groups" }, M = { "<cmd>Telescope man_pages<cr>", "Man Pages" }, r = { "<cmd>Telescope oldfiles<cr>", "Open Recent File" }, R = { "<cmd>Telescope registers<cr>", "Registers" }, |