fix: remove overwrite for tab key in insert mode
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled Details

This commit is contained in:
Sven Vogel 2024-12-09 14:13:56 +01:00
parent aff0a1dcf1
commit 822a1827b5
2 changed files with 2 additions and 10 deletions

View File

@ -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>',

View File

@ -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>',
}