Git-timemachine: Don't sharp quote

This commit is contained in:
James Nguyen 2018-04-21 11:27:17 -07:00
parent c64bc1b274
commit 669fc380a7
1 changed files with 8 additions and 8 deletions

View File

@ -30,14 +30,14 @@
(defun evil-collection-git-timemachine-setup ()
"Setup `evil' keybindings for `git-timemachine'."
(evil-define-minor-mode-key 'normal 'git-timemachine-mode
"\C-k" #'git-timemachine-show-previous-revision
"\C-j" #'git-timemachine-show-next-revision
"q" #'git-timemachine-quit
"gtg" #'git-timemachine-show-nth-revision
"gtt" #'git-timemachine-show-revision-fuzzy
"gty" #'git-timemachine-kill-abbreviated-revision
"gtY" #'git-timemachine-kill-revision
"gtb" #'git-timemachine-blame))
"\C-k" 'git-timemachine-show-previous-revision
"\C-j" 'git-timemachine-show-next-revision
"q" 'git-timemachine-quit
"gtg" 'git-timemachine-show-nth-revision
"gtt" 'git-timemachine-show-revision-fuzzy
"gty" 'git-timemachine-kill-abbreviated-revision
"gtY" 'git-timemachine-kill-revision
"gtb" 'git-timemachine-blame))
(provide 'evil-collection-git-timemachine)
;;; evil-collection-git-timemachine.el ends here