Skip to content

Commit

Permalink
Adjust keybindings of revert-current-buffer.
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle0128 committed Jan 28, 2019
1 parent 56d0dae commit c85c65e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lisp/init-funcs.el
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
(if (fboundp 'fancy-widen)
(fancy-widen)))
(revert-buffer t t))
(bind-keys ("<f5>" . revert-current-buffer)
("s-r" . revert-current-buffer))
(bind-key "<f5>" #'revert-current-buffer)
(if sys/mac-x-p
(bind-key "s-r" #'revert-current-buffer))

;; Browse the homepage
(defun browse-homepage ()
Expand Down

0 comments on commit c85c65e

Please sign in to comment.