Last active
July 16, 2016 16:20
-
-
Save kazemihabib/e4544ca1421bab5f382a2c7699fbdcb0 to your computer and use it in GitHub Desktop.
pentadactyl tricks
This file contains 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
1) | |
#fix Ctrl +c and Ctrl + v in pentadactyl | |
#http://superuser.com/a/229030/473587 | |
#use this commands to fix it | |
noremap <C-v> <C-v><C-v> | |
inoremap <C-v> <C-v><C-v> | |
cnoremap <C-v> <C-v><C-v> | |
noremap <C-c> <C-v><C-c> | |
inoremap <C-c> <C-v><C-c> | |
cnoremap <C-c> <C-v><C-c> | |
2) | |
#http://superuser.com/a/725037/473587 | |
:js editor.defaultRegister="+" | |
3) | |
#save changes | |
:mkvimperatorrc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment