diff options
author | William Carroll <wpcarro@gmail.com> | 2022-02-14T19·58-0800 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-14T20·23+0000 |
commit | 5d09aa53dd7b35f4250d5ea539aa8a21c30b8aa7 (patch) | |
tree | 3974476ced59d6695afacb3d999e6a7eda33e6ac /users/wpcarro/emacs/.emacs.d/wpc | |
parent | a8e76b24e81b8be4621414742ed96ed42eb4e9e8 (diff) |
feat(wpcarro/emacs): Support bookmark for /depot/users/wpcarro r/3827
Saving keystrokes every day. Right? Change-Id: I8a2fd42c9139f87181ac203e1573be3823e18b56 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5283 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/keybindings.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el index b1a6df6690f0..da81808837a5 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el @@ -398,6 +398,11 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (bookmark-install-kbd + (make-bookmark :label "wpcarro" + :path (f-join tvl-depot-path "users/wpcarro") + :kbd "w")) + +(bookmark-install-kbd (make-bookmark :label "depot" :path tvl-depot-path :kbd "d")) |