Ubuntuのシステムバッファーからキーボードショートカットをコピーして貼り付けるためにVIMを構成しますか?


14

どのように私は使用するためのVIMを設定しますCtrl- cコピーするとCtrl- vのUbuntuのシステムバッファから貼り付けますか?



Creamを使用することをお勧めしますか?cream.sourceforge.netこれは、vimの作業方法に不安を感じるユーザー向けに特別に設計されたvimのバリアントです。
ルーク

回答:


16

MS Windowsのデフォルトの動作:-

mswin.vimファイルからのexcertは次のとおりです。

" 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>

ブロックモードのカット/ペーストに必要なpaste.vimスクリプト:-

    " 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
ここで誤ってSEOしたWindowsユーザー(OPはUbuntu)の場合source $VIMRUNTIME/mswin.vim、_vimrcファイルの先頭に追加します。Linuxでファイルを正常にインクルードすることを妨げるファンキーなものはありますか?
ラフィン

1
@ruffinソースを調べると、UNIX用のステートメントがあるかどうかがわかります。そのため、作成者はmswin.vimLinuxでの使用も念頭に置いていました。
RoliSoft

設定C-V:特殊文字入力モード壊れる貼り付ける vim.wikia.com/wiki/...
g33kz0r

0

ほとんどのものがデフォルト設定であると仮定すると、これはほんのわずかです**:

: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<
  • 1行目:shift + arrowsでテキストを選択します(さらに多くのことを行います*)

  • 2行目:「+(および「*」)をデフォルトのレジスタにします(gui / term clipboard)

  • 3、4、5、6行目:Ctrl-x / c / vの切り取り/コピーと貼り付け

  • 7,8行目:TAB / SHIFT + TABでインデント/アウトデントを選択します

注意:*** [:set] tingsはこの動作を変更する可能性があり、最小限の私が言ったように、ニーズに合わせて多くの調整が必要になる場合があります。* [:behave]はドキュメントを読む多くの[:set] tingを変更します。


0

Ctrl-Vをマップして、システムクリップボードを取得してレジスタに挿入し、カーソルの下の画面に貼り付けるシステムコマンドを実行します。

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

ソース:http : //vim.wikia.com/wiki/In_line_copy_and_paste_to_system_clipboard


1
これは不必要に複雑です。「+ y」と「+ p」にマッピングできます
-FliiFe
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.