diff options
| author | opalmay <[email protected]> | 2023-01-13 14:44:09 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-13 14:44:09 +0200 | 
| commit | 4455bd2add5f3c53593cefb84fe13731adc54376 (patch) | |
| tree | b5d551a921d5ed88512c3ed3c10fdb6f6c83d560 /lua/lvim/core/which-key.lua | |
| parent | f590770a17770f5cb74186e15204a9ffe1b96beb (diff) | |
refactor(quit)!: use native quit confirm (#3721)
Diffstat (limited to 'lua/lvim/core/which-key.lua')
| -rw-r--r-- | lua/lvim/core/which-key.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index ba816b2f..8cedeabc 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -101,7 +101,7 @@ M.config = function()      mappings = {        [";"] = { "<cmd>Alpha<CR>", "Dashboard" },        ["w"] = { "<cmd>w!<CR>", "Save" }, -      ["q"] = { "<cmd>lua require('lvim.utils.functions').smart_quit()<CR>", "Quit" }, +      ["q"] = { "<cmd>confirm q<CR>", "Quit" },        ["/"] = { "<Plug>(comment_toggle_linewise_current)", "Comment toggle current line" },        ["c"] = { "<cmd>BufferKill<CR>", "Close Buffer" },        ["f"] = { | 
