vim: fix visual mode yank to clipboard

feature/improve-speed
bretello 2021-05-19 10:39:12 +02:00
parent 0cde5c3ea8
commit 9ae5b71263
1 changed files with 4 additions and 6 deletions

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'