fix(nvim): correctly insert raw tab for tab switch binding
This commit is contained in:
parent
e4b097773e
commit
5212f84c90
@ -96,7 +96,7 @@ M.setup = function()
|
|||||||
-- Binding to insert literal tab
|
-- Binding to insert literal tab
|
||||||
vim.keymap.set("i", "<S-Tab>", function()
|
vim.keymap.set("i", "<S-Tab>", function()
|
||||||
if vim.opt_local.expandtab:get() then
|
if vim.opt_local.expandtab:get() then
|
||||||
vim.api.nvim_feedkeys("\t", "m", false)
|
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes("<C-V><TAB>", true, false, true), "m", true)
|
||||||
else
|
else
|
||||||
local spaces = string.rep(" ", vim.opt_local.shiftwidth:get() or 4)
|
local spaces = string.rep(" ", vim.opt_local.shiftwidth:get() or 4)
|
||||||
vim.api.nvim_feedkeys(spaces, "m", false)
|
vim.api.nvim_feedkeys(spaces, "m", false)
|
||||||
|
Loading…
Reference in New Issue
Block a user