diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-08-18 10:56:39 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-08-18 10:56:39 +0100 |
commit | 4055624b3f1bccf1cf224cf1103d40c77bb84fa1 (patch) | |
tree | fa6f0244f3743aee16e1d6c3ea1aadb662812bc9 | |
parent | d0fd5825d14c610ac050975d1346076317632413 (diff) | |
download | dotfiles-4055624b3f1bccf1cf224cf1103d40c77bb84fa1.tar.gz |
Turn off smartscan in sql-interactive-mode
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index a722aac..7d65a94 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -85,7 +85,8 @@ char." (cider-repl-mode . (lambda () (smartscan-mode -1))) (ielm-mode . (lambda () (smartscan-mode -1))) (vterm-mode . (lambda () (smartscan-mode -1))) - (eshell-mode . (lambda () (smartscan-mode -1)))) + (eshell-mode . (lambda () (smartscan-mode -1))) + (sql-interactive-mode . (lambda () (smartscan-mode -1)))) (use-package symbol-overlay :bind |