diff options
author | ChristianChiarulli <[email protected]> | 2022-10-04 03:49:31 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2022-10-04 03:49:31 -0400 |
commit | 560ee4d7cf4038a22a5556d79ad92cd226a792dc (patch) | |
tree | f2d825c3ca8cf018e92ac606500498e6b9de9afb /lua | |
parent | 2254ce4bc43ab11a831ef39a77415de169eac040 (diff) |
fix: esc exit autocommand
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lvim/core/autocmds.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lua/lvim/core/autocmds.lua b/lua/lvim/core/autocmds.lua index e8135fc4..99c65c2e 100644 --- a/lua/lvim/core/autocmds.lua +++ b/lua/lvim/core/autocmds.lua @@ -21,12 +21,10 @@ function M.load_defaults() "lir", "DressingSelect", "tsplayground", - "Markdown", }, callback = function() vim.cmd [[ nnoremap <silent> <buffer> q :close<CR> - nnoremap <silent> <buffer> <esc> :close<CR> set nobuflisted ]] end, |