Configurare VIM per copiare e incollare le scorciatoie da tastiera dal buffer di sistema in Ubuntu?


Risposte:


16

Comportamento predefinito in MS Windows: -

Ecco un estratto dal file 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>

e lo script paste.vim necessario per la modalità blocco taglia / incolla: -

    " 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

3
Per gli utenti di Windows che hanno accidentalmente fatto SEO qui (OP è Ubuntu), aggiungi source $VIMRUNTIME/mswin.vimnella parte superiore del tuo file _vimrc. Qualcosa di strano che ti impedisce di includere correttamente il file anche in Linux?
ruffin

1
@ruffin Ispezionando la fonte vedrai se le istruzioni per UNIX, quindi il creatore aveva mswin.vimin mente anche l'uso sotto Linux.
RoliSoft,

L'impostazione C-Vdi incolla interromperà la modalità di immissione dei caratteri speciali: vim.wikia.com/wiki/…
g33kz0r

0

Questo è solo minimo, supponendo che molte cose siano impostazioni predefinite **:

: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<
  • riga 1: consente a shift + frecce di selezionare il testo (e fa di più *)

  • riga 2: rende "+ (e" *) il registro predefinito (appunti gui / term)

  • righe 3,4,5,6: rende Ctrl-x / c / v Taglia / Copia e Incolla

  • riga 7,8: effettua selezioni TAB / SHIFT + TAB indent / outdent

Attenzione: *** [: set] le cose possono alterare questo comportamento e possono essere necessarie molte modifiche per soddisfare le tue esigenze, come ho detto, minimo. * [: behave] cambia molte [: set] tazioni per leggere i documenti.


0

Mappa Ctrl-V per eseguire il comando di sistema che afferra gli appunti di sistema e lo lancia in un registro e lo incolla sullo schermo sotto il cursore:

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

Fonte: http://vim.wikia.com/wiki/In_line_copy_and_paste_to_system_clipboard


1
Questo è inutilmente complesso. Puoi semplicemente mappare su "+ ye" + p
FliiFe il
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.