diff options
author | Raul Benencia <raul@thousandeyes.com> | 2023-12-04 11:11:26 -0800 |
---|---|---|
committer | Raul Benencia <raul@thousandeyes.com> | 2023-12-04 11:11:26 -0800 |
commit | d88b73dba3a65b47f7623f09af61bc43b8874c35 (patch) | |
tree | 07a2c80528a4e63cb6e89cf8f34dce1b6ad1a404 | |
parent | b49389dc0d5a1705cffb5a2c1e8986d83f8f110e (diff) |
emacs: bookmarks keybindings
-rw-r--r-- | .emacs.d/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9a64089..91d8e28 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -28,9 +28,10 @@ (global-set-key (kbd "C-c R") 'revert-buffer) (global-set-key (kbd "C-c w") 'whitespace-cleanup) +(global-set-key (kbd "C-c b s") 'bookmark-set) +(global-set-key (kbd "C-c b j") 'bookmark-jump) -;; compile -(global-set-key [f12] 'compile) +(global-set-key (kbd "<f12>") 'compile) (defun help/insert-em-dash () "Inserts an EM-DASH (not a HYPEN, not an N-DASH)" |