about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-11-08T18·36-0800
committerclbot <clbot@tvl.fyi>2022-01-08T06·10+0000
commit4c51588850f83b4a8dec95867f410ae7b7d5db25 (patch)
tree3cb40ecc7ab35626f423575155d376cd86cbbc05 /users/wpcarro/emacs/.emacs.d/wpc/keybindings.el
parent821b60a2c9d474b61e573d99c2c2a03636d559cb (diff)
refactor(wpcarro/emacs): Tidy-up bookmark.el r/3561
TL;DR:
- Prefer dash.el
- Remove "current project" bookmark
- Prefer named functions instead of lambdas to (hopefully) improve `which-key`

Change-Id: I090bf372316702f313284a80af9dd076dbf270a3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4806
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Diffstat (limited to '')
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/keybindings.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el
index 25c026c09e..a90da9af59 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el
@@ -53,9 +53,6 @@
 ;; General Keybindings
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-;; Install KBDs like <SPC>jb to search through my monorepo.
-(bookmark-install-kbds)
-
 ;; Ensure that evil's command mode behaves with readline bindings.
 (general-define-key
  :keymaps 'evil-ex-completion-map
@@ -383,5 +380,8 @@
  "<SPC>" #'buffer-show-previous
  "k" #'kill-buffer)
 
+;; Install KBDs like <SPC>jb to search through my monorepo.
+(bookmark-install-kbds)
+
 (provide 'keybindings)
 ;;; keybindings.el ends here