diff options
author | William Carroll <wpcarro@gmail.com> | 2022-01-28T19·11-0800 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-28T19·14+0000 |
commit | d2052ff753ea53715fe29d11722f00e521521d77 (patch) | |
tree | 82f5dfa57859fc28444041cbdd328dd4c25188ac /users/wpcarro | |
parent | d549432b4227c3520fdf790d5df9b4a2e997523e (diff) |
fix(wpcarro/emacs): Remove duplicate fn defn r/3695
Prefer the version of `bookmark-install-kbds` that defines named functions, which are useful for the `which-key` integration. Change-Id: I2ba8d457f04cba72da24244db8cd333f44e9a606 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5102 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/bookmark.el | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el b/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el index 04efc7c2e505..c5e3bf3ac965 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el @@ -80,14 +80,6 @@ (format "J%s" (bookmark-kbd b)) `,(intern (format "bookmark-visit-%s" (bookmark-label b))) (format "j%s" (bookmark-kbd b)) `,(intern (format "bookmark-browse-%s" (bookmark-label b))))) -(defun bookmark-install-kbd (x) - "Install the keybindings for a bookmark, X." - (general-define-key - :prefix "<SPC>" - :states '(normal) - (format "J%s" (bookmark-kbd x)) (lambda () (interactive) (find-file (bookmark-path x))) - (format "j%s" (bookmark-kbd x)) (lambda () (interactive) (bookmark-open (bookmark-path x))))) - (defun bookmark-install-kbds () "Install the keybindings defined herein." (->> bookmark-whitelist |