Horje
vim wsl copy to windows system clipboard Code Example
vim wsl copy to windows system clipboard
# if you want to paste from windows clipboard into vim
# while in Insert Mode press Shift+Ins and confirm paste

# to make vim yank to windows clipboard 
# put the following in your .vimrc
# *you don't need to yank to a specific register
" WSL yank support
let s:clip = '/mnt/c/Windows/System32/clip.exe'  " change this path according to your mount point
if executable(s:clip)
    augroup WSLYank
        autocmd!
        autocmd TextYankPost * if v:event.operator ==# 'y' | call system(s:clip, @0) | endif
    augroup END
endif




Shell

Related
how to renew let's encrypt certificate nginx Code Example how to renew let's encrypt certificate nginx Code Example
Tag git branch Code Example Tag git branch Code Example
certbot enable nginx renew Code Example certbot enable nginx renew Code Example
ubuntu login as root Code Example ubuntu login as root Code Example
error Command failed with exit code 3221225477 Code Example error Command failed with exit code 3221225477 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14