diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-27T16·21+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-27T16·21+0000 |
commit | 7e1391cc47dbff891d9ebd2a734bdd3ead1ab56f (patch) | |
tree | 6439734bffc3cef50725d8d7e90f2c000f494cc7 /configs/shared/.emacs.d/wpc/bookmark.el | |
parent | 680d129cb3d5636e76fbf92265de630a1101f717 (diff) |
Rename mono -> universe
Update code that depends on my mono-repo being named "mono". I've renamed it to "universe", which explains the changes in this commit. TODO: Merge dotfiles into universe.
Diffstat (limited to 'configs/shared/.emacs.d/wpc/bookmark.el')
-rw-r--r-- | configs/shared/.emacs.d/wpc/bookmark.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configs/shared/.emacs.d/wpc/bookmark.el b/configs/shared/.emacs.d/wpc/bookmark.el index 851f9be09436..734ddaa13a27 100644 --- a/configs/shared/.emacs.d/wpc/bookmark.el +++ b/configs/shared/.emacs.d/wpc/bookmark.el @@ -12,6 +12,10 @@ ;;; Code: +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Dependencies +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + (require 'f) (require 'buffer) (require 'list) @@ -58,8 +62,8 @@ Otherwise, open with `counsel-find-file'." (make-bookmark :label "org" :path "~/Dropbox/org" :kbd "o") - (make-bookmark :label "mono" - :path "~/mono" + (make-bookmark :label "universe" + :path "~/universe" :kbd "m") (make-bookmark :label "dotfiles" :path "~/dotfiles" @@ -77,7 +81,7 @@ Otherwise, open with `counsel-find-file'." (defun bookmark/magit-status () "Use ivy to select a bookmark and jump to its `magit-status' buffer." (interactive) - (let ((labels (set/new "dotfiles" "mono" "depot")) + (let ((labels (set/new "dotfiles" "universe" "depot")) (all-labels (->> bookmark/whitelist (list/map (>> bookmark-label)) set/from-list))) |