diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-08-30 15:48:46 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-08-30 15:48:46 +0100 |
commit | 020b89aac26034a8fe69b110e0c734b93587769e (patch) | |
tree | f71e5d9082df2a55670ab59b17ace1eb47c39a39 /.emacs.d/lisp | |
parent | 63920469de91f7cfa537810ad3150d92c8527898 (diff) | |
download | dotfiles-020b89aac26034a8fe69b110e0c734b93587769e.tar.gz |
Cut down/fix gumshoe config
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index 18bc491..88e95b0 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -85,17 +85,8 @@ Or remove all highlighted symbols in the current buffer (with`ARG')." (gumshoe-slot-schema '(perspective time buffer position line)) :config (global-gumshoe-mode +1) - (defvar gumshoe-repeat-map - (let ((map (make-sparse-keymap))) - (define-key map (kbd "}") #'global-gumshoe-backtracking-mode-forward) - (define-key map (kbd "{") #'global-gumshoe-backtracking-mode-back) - map)) - (dolist (cmd '(global-gumshoe-backtracking-mode-forward global-gumshoe-backtracking-mode-back)) - (put cmd 'repeat-map 'gumshoe-repeat-map)) :bind - ("C-c }" . global-gumshoe-backtracking-mode-forward) - ("C-c {" . global-gumshoe-backtracking-mode-back) - ("C-c '" . gumshoe-peruse-in-persp)) + ("C-c '" . gumshoe-peruse-globally)) (use-package goto-chg :config |