Configurer VIM pour copier et coller les raccourcis clavier du tampon système dans Ubuntu?


Réponses:


16

Comportement par défaut dans MS Windows: -

Voici un extrait du fichier 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>

et le script paste.vim qui est requis pour le mode bloc couper / coller: -

    " 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
Pour les utilisateurs de Windows qui ont accidentellement fait du référencement ici (OP est Ubuntu), ajoutez source $VIMRUNTIME/mswin.vimen haut de votre fichier _vimrc. Tout ce que funky qui vous empêche de succès , y compris le fichier sous Linux ainsi?
ruffin

1
@ruffin En inspectant la source, vous verrez si des instructions pour UNIX, donc le créateur a également pensé à utiliser mswin.vimsous Linux.
RoliSoft

Le réglage C-Vpour coller interrompra le mode d'entrée de caractères spéciaux: vim.wikia.com/wiki/…
g33kz0r

0

C'est juste minime, en supposant que la plupart des choses sont des paramètres par défaut **:

: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<
  • ligne 1: fait le shift + flèches sélectionner le texte (et fait plus *)

  • ligne 2: fait de "+ (et" *) le registre par défaut (gui / term clipboard)

  • lignes 3,4,5,6: fait Ctrl-x / c / v Couper / Copier et Coller

  • ligne 7,8: sélectionne TAB / SHIFT + TAB en retrait / en retrait

Attention: *** [: set] tings peut modifier ce comportement et que de nombreux ajustements peuvent être nécessaires pour répondre à vos besoins, comme je l'ai dit, minimes. * [: behave] change de nombreux [: set] tings lire les documents.


0

Mappez Ctrl-V pour exécuter la commande système qui saisit le presse-papiers du système et le jette dans un registre, puis le colle à l'écran sous le curseur:

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

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


1
C'est inutilement complexe. Vous pouvez simplement mapper sur "+ y et" + p
FliiFe
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.