nvim: make C-F work in visual mode

This commit is contained in:
tastytea 2022-08-12 19:20:30 +02:00
parent 7339958a08
commit 787a371482
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -71,7 +71,7 @@ map({ 'n', 'i', 'v' }, '<Home>',
end
)
map('n', '<C-F>', '==') -- re-indent line
map({ 'n', 'v' }, '<C-F>', '==') -- re-indent line
-- select text with shift + arrow
for _, key in ipairs({ 'Left', 'Up', 'Down', 'Right' }) do