Skip to content

Instantly share code, notes, and snippets.

@kazemihabib
Last active July 16, 2016 16:20
Show Gist options
  • Save kazemihabib/e4544ca1421bab5f382a2c7699fbdcb0 to your computer and use it in GitHub Desktop.
Save kazemihabib/e4544ca1421bab5f382a2c7699fbdcb0 to your computer and use it in GitHub Desktop.
pentadactyl tricks
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