1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-21 19:11:30 +01:00

vim: fix visual mode yank to clipboard

This commit is contained in:
bretello 2021-05-19 10:39:12 +02:00
parent 0cde5c3ea8
commit 9ae5b71263

View File

@ -133,12 +133,10 @@ else
endif
" Add shortcuts to yank/paste to unnamed/unnamedplus clipboards
" noremap <Leader>y "*y
" noremap <Leader>p "*p
noremap <Leader>y "+y
noremap <Leader>p "+P
noremap <Leader>Y "+y
noremap <Leader>P "+P
map <Leader>y "+y
map <Leader>p "+P
map <Leader>Y "+y
map <Leader>P "+P
" Insert a python breakpoint
let @b = 'ibreakpoint() ýa'