Jak skonfigurować VIM do używania Ctrl- cdo kopiowania i Ctrl- vdo wklejania z bufora systemowego w Ubuntu?
Jak skonfigurować VIM do używania Ctrl- cdo kopiowania i Ctrl- vdo wklejania z bufora systemowego w Ubuntu?
Odpowiedzi:
Domyślne zachowanie w MS Windows: -
Oto fragment z pliku mswin.vim: -
" CTRL-X and SHIFT-Del are Cut
vnoremap <C-X> "+x
vnoremap <S-Del> "+x
" CTRL-C and CTRL-Insert are Copy
vnoremap <C-C> "+y
vnoremap <C-Insert> "+y
" CTRL-V and SHIFT-Insert are Paste
map <C-V> "+gP
map <S-Insert> "+gP
cmap <C-V> <C-R>+
cmap <S-Insert> <C-R>+
" Pasting blockwise and linewise selections is not possible in Insert and
" Visual mode without the +virtualedit feature. They are pasted as if they
" were characterwise instead.
" Uses the paste.vim autoload script.
exe 'inoremap <script> <C-V>' paste#paste_cmd['i']
exe 'vnoremap <script> <C-V>' paste#paste_cmd['v']
imap <S-Insert> <C-V>
vmap <S-Insert> <C-V>
" Use CTRL-Q to do what CTRL-V used to do
noremap <C-Q> <C-V>
oraz skrypt paste.vim wymagany do wycinania / wklejania w trybie blokowym: -
" Vim support file to help with paste mappings and menus
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2006 Jun 23
" Define the string to use for items that are present both in Edit, Popup and
" Toolbar menu. Also used in mswin.vim and macmap.vim.
" Pasting blockwise and linewise selections is not possible in Insert and
" Visual mode without the +virtualedit feature. They are pasted as if they
" were characterwise instead. Add to that some tricks to leave the cursor in
" the right position, also for "gi".
if has("virtualedit")
let paste#paste_cmd = {'n': ":call paste#Paste()<CR>"}
let paste#paste_cmd['v'] = '"-c<Esc>' . paste#paste_cmd['n']
let paste#paste_cmd['i'] = 'x<BS><Esc>' . paste#paste_cmd['n'] . 'gi'
func! paste#Paste()
let ove = &ve
set ve=all
normal! `^
if @+ != ''
normal! "+gP
endif
let c = col(".")
normal! i
if col(".") < c " compensate for i<ESC> moving the cursor left
normal! l
endif
let &ve = ove
endfunc
else
let paste#paste_cmd = {'n': "\"=@+.'xy'<CR>gPFx\"_2x"}
let paste#paste_cmd['v'] = '"-c<Esc>gix<Esc>' . paste#paste_cmd['n'] . '"_x'
let paste#paste_cmd['i'] = 'x<Esc>' . paste#paste_cmd['n'] . '"_s'
endi
source $VIMRUNTIME/mswin.vim
na górze pliku _vimrc. Czy jest coś fajnego, co uniemożliwia pomyślne dołączenie pliku również do Linuksa?
mswin.vim
myśli również użycie Linuksa.
C-V
wklejania spowoduje uszkodzenie
Jest to tylko minimalne, zakładając, że większość rzeczy to ustawienia domyślne **:
:behave mswin
:set clipboard=unnamedplus
:smap <Del> <C-g>"_d
:smap <C-c> <C-g>y
:smap <C-x> <C-g>x
:imap <C-v> <Esc>pi
:smap <C-v> <C-g>p
:smap <Tab> <C-g>1>
:smap <S-Tab> <C-g>1<
wiersz 1: powoduje, że strzałki Shift + zaznaczają tekst (i robi więcej *)
wiersz 2: ustawia domyślny rejestr „+ (i” *) (schowek GUI / term)
linie 3,4,5,6: tworzy Ctrl-x / c / v Wytnij / Kopiuj i Wklej
wiersz 7,8: powoduje wybranie wcięcia / wcięcia TAB / SHIFT + TAB
Uwaga: *** [: set] tings mogą zmienić to zachowanie i że wiele poprawek może być potrzebnych, aby dopasować się do twoich potrzeb, jak powiedziałem, minimalne. * [: behave] zmienia wiele [: zestaw] t czytać dokumenty.
Odwzoruj Ctrl-V, aby uruchomić polecenie systemowe, które pobiera schowek systemowy i wrzuca go do rejestru i wkleja na ekran pod kursorem:
vmap <C-c> y:call system("xclip -i -selection clipboard", getreg("\""))<CR>:call system("xclip -i", getreg("\""))<CR>
nmap <C-v> :call setreg("\"",system("xclip -o -selection clipboard"))<CR>p
Źródło: http://vim.wikia.com/wiki/In_line_copy_and_paste_to_system_clipboard