diff options
author | kylo252 <[email protected]> | 2022-02-12 09:29:36 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-12 09:29:36 +0100 |
commit | f6a75c1d10fdf6fd667419dab30b37fb8a3081ee (patch) | |
tree | 84cb9239fa9848e3bcaa7264f4b87333eea2a5d0 /lua/lvim/core/commands.lua | |
parent | 564798b83e40e622fb5c1b6f3803b80f42d092ec (diff) |
feat: add a minimal implementation of bbye (#2267)
Diffstat (limited to 'lua/lvim/core/commands.lua')
-rw-r--r-- | lua/lvim/core/commands.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/core/commands.lua b/lua/lvim/core/commands.lua index 6997795d..2d23167f 100644 --- a/lua/lvim/core/commands.lua +++ b/lua/lvim/core/commands.lua @@ -10,6 +10,7 @@ M.defaults = { endif endfunction ]], + [[ command! BufferKill lua require('user.bufferline').buf_kill('bd') ]], -- :LvimInfo [[ command! LvimInfo lua require('lvim.core.info').toggle_popup(vim.bo.filetype) ]], [[ command! LvimCacheReset lua require('lvim.utils.hooks').reset_cache() ]], |