WSL 2
의 vim
의 yank
내용을 Windows
의 clipboard
로 가져오려면 아래의 설정을 vim conf
파일 내에 기입한다:
" -------------------------------------------------------------
" WSL 2 사용 시 yank 내용을
" -------------------------------------------------------------
let s:clip = '/mnt/c/Windows/System32/clip.exe'
if executable(s:clip)
augroup WSLYank
autocmd!
autocmd TextYankPost * call system('echo '.
\shellescape(
\join(v:event.regcontents, "\<CR>")
\).' | '.s:clip
\)
augroup END
end
[사이트] https://hidekuma.github.io/vim/wsl/synchronize-system-clipboard-vim-on-WSL/