[Windows] WSL 2 vim clipboard 동기화
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/
Author And Source
이 문제에 관하여([Windows] WSL 2 vim clipboard 동기화), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mythos/Windows-WSL-2-vim-clipboard-동기화저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)