vim・mac間でクリップボードを介してやり取りする方法 完結編
公開日:
:
最終更新日:2014/01/31
Vim
記事内に広告を含む場合があります。記事内で紹介する商品を購入することで、当サイトに売り上げの一部が還元されることがあります。
% nkf --help
j,s,e,w Output code is JIS 7 bit (DEFAULT), Shift JIS, EUC-JP, UTF-8N
After 'w' you can add more options. -w[ 8 [0], 16 [[BL] [0]] ]
J,S,E,W Input assumption is JIS 7 bit , Shift JIS, EUC-JP, UTF-8
After 'W' you can add more options. -W[ 8, 16 [BL] ]
あー、nkfの使い方を間違えてた!!というわけで、
nmap _ :.w !nkf -Ws\|pbcopy<CR><CR>
vmap _ :w !nkf -Ws\|pbcopy<CR><CR>
nmap - :set paste<CR>:r !pbpaste\|nkf -Sw<CR>:set nopaste<CR>
これで日本語も双方向でコピペできるようになりました。