about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-10-11 13:36:33 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-10-11 13:36:33 +0100
commitf8189c6c2d824e129792875cce7efe8ab9374537 (patch)
treec5af3888996d68d6529497c27eae3dbf46fc7d84
parentd911c9b956aa4a685e761df8ba276c57e5fb06bf (diff)
downloaddotfiles-f8189c6c2d824e129792875cce7efe8ab9374537.tar.gz
Disable smartscan in more modes
-rw-r--r--.emacs.d/lisp/init-navigation.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el
index f1d0072..cb2a39e 100644
--- a/.emacs.d/lisp/init-navigation.el
+++ b/.emacs.d/lisp/init-navigation.el
@@ -25,8 +25,13 @@
   (cider-repl-mode . (lambda () (smartscan-mode -1)))
   (ielm-mode . (lambda () (smartscan-mode -1)))
   (vterm-mode . (lambda () (smartscan-mode -1)))
+  (term-mode . (lambda () (smartscan-mode -1)))
+  (ansi-term-mode . (lambda () (smartscan-mode -1)))
   (eshell-mode . (lambda () (smartscan-mode -1)))
-  (sql-interactive-mode . (lambda () (smartscan-mode -1))))
+  (shell-mode . (lambda () (smartscan-mode -1)))
+  (sql-interactive-mode . (lambda () (smartscan-mode -1)))
+  (compilation-mode . (lambda () (smartscan-mode -1)))
+  (deadgrep-mode . (lambda () (smartscan-mode -1))))
 
 (use-package symbol-overlay
   :bind