Last active
March 15, 2025 21:32
-
-
Save prmichaelsen/87752af0f4e0d669fbaa7e0dc8f9d193 to your computer and use it in GitHub Desktop.
Clipboard .vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" https://stackoverflow.com/questions/3961859/how-to-copy-to-clipboard-in-vim | |
" Enable Cmd + C | |
vnoremap <C-c> :w !pbcopy<CR><CR> noremap <C-v> | |
" Enable Cmd + P | |
noremap <C-v> :r !pbpaste<CR><CR> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias tv="vim -R -" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git diff HEAD~1 --name-only | tv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment