Created
March 2, 2018 12:32
-
-
Save shrdlu68/e9c93f8aa7a5b51a954183785287919d to your computer and use it in GitHub Desktop.
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
(in-package :next) | |
(defhydra switch-buffer | |
("p" switch-buffer-previous) | |
("n" switch-buffer-next)) | |
(define-key *global-map* (kbd "M-s") #'switch-buffer) | |
(defhydra load-url | |
("l" set-url-current-buffer) | |
("L" set-url-new-buffer)) | |
(define-key *global-map* (kbd "M-n") #'load-url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment