1
0
Fork 0

nvim: fix some maps

This commit is contained in:
tastytea 2023-01-17 17:03:42 +01:00
parent 5e198fde64
commit efd47a0699
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 3 deletions

View File

@ -60,9 +60,10 @@ map({ 'v', 'n' }, '<Leader>y', '"+y', 'Yank to system clipboard')
map({ 'v', 'n' }, '<Leader><C-y>', '"*y', 'Yank to system selection')
map('n', '<Leader>p', '"+p', 'Paste from system clipboard')
map('n', '<Leader>P', '"+P', 'Paste from system clipboard')
map('n', '<Leader><C-p>', '"*p', 'Paste from system selection (after)')
map('n', '<Leader><C-M-p>', '"*P', 'Paste from system selection (before)')
map('n', '<Leader>P', '"+P', 'Paste from system clipboard')
map('n', '<Leader><C-p>', '"*p', 'Paste from system selection')
map('n', '<Leader><C-M-p>', '"*P', 'Paste from system selection')
-- toggle between beginning of line and beginning of text
map({ 'n', 'i', 'v' }, '<Home>',