diff options
author | Alexey Svirschevskiy <[email protected]> | 2022-02-12 18:16:06 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-12 18:16:06 +0100 |
commit | e8e8e8b576ffab801d80364916705190ac88ea34 (patch) | |
tree | e69fe8aa16dab5c4627a10af015e98d31bc15131 | |
parent | 4b7435a23fd644fa0f158f77b0ecdbb2b0b9430b (diff) |
fix: correct a path to bufferline module (#2270)
-rw-r--r-- | lua/lvim/core/commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/commands.lua b/lua/lvim/core/commands.lua index 2d23167f..4ddbfcf0 100644 --- a/lua/lvim/core/commands.lua +++ b/lua/lvim/core/commands.lua @@ -10,7 +10,7 @@ M.defaults = { endif endfunction ]], - [[ command! BufferKill lua require('user.bufferline').buf_kill('bd') ]], + [[ command! BufferKill lua require('lvim.core.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() ]], |