fix: remove overwrite for tab key in insert mode
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Details
This commit is contained in:
parent
aff0a1dcf1
commit
822a1827b5
|
@ -54,14 +54,6 @@ local keymaps = {
|
|||
cmd = '<gv',
|
||||
desc = "Shift selection in visual right"
|
||||
},
|
||||
{
|
||||
mode = { 'i' },
|
||||
keys = '<tab>',
|
||||
cmd = function()
|
||||
vim.cmd(':>')
|
||||
end,
|
||||
desc = "Shift selection in visual mode right"
|
||||
},
|
||||
{
|
||||
mode = { 'i' },
|
||||
keys = '<S-tab>',
|
||||
|
|
|
@ -37,8 +37,8 @@ return {
|
|||
up = '<C-up>',
|
||||
|
||||
-- Move current line in Normal mode
|
||||
line_left = nil,
|
||||
line_right = nil,
|
||||
line_left = '<S-tab>',
|
||||
line_right = '<tab>',
|
||||
line_down = '<C-down>',
|
||||
line_up = '<C-up>',
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue