diff options
author | noa | 2024-09-17 10:38:23 +0800 |
---|---|---|
committer | noa | 2024-09-17 10:38:23 +0800 |
commit | 5d640784c5bfa99d9a13b67fdcbbcba214f191ab (patch) | |
tree | 4dbb48d37dba8fb8a7024d12e35fb1f220edb36c /emacs | |
parent | f8a6d14feef9a6b1d547f8c4117fae944292f674 (diff) |
Remove unused smartscan configuration
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/emacs/init.el b/emacs/init.el index 6ec870d..731609b 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -775,15 +775,6 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (global-set-key (kbd "M-o") 'other-window) (global-set-key (kbd "C-x k") 'kill-current-buffer) -;; Smart scan -;; This is a nice package to easily jump between identical things at point, like the * operator in vim. I disabled it because i'm trying out using the same keybindings to jump between compile mode errors. - -;; (use-package smartscan) -;; (global-set-key (kbd "M-n") #'smartscan-symbol-go-forward) -;; (global-set-key (kbd "M-p") #'smartscan-symbol-go-backward) -;; (global-set-key (kbd "M-n") #'next-error) -;; (global-set-key (kbd "M-p") #'previous-error) - ;; Jef Raskin's leap ;; As a concept, i really like the canon cat. As described [[https://news.ycombinator.com/item?id=33286408][here]], it has two leap keys to navigate the buffer. [[https://dercuano.github.io/notes/eink-design.html][According to Kragen Javier Sitaker]], you could move side to side with the arrow keys, but not up and down. The idea was that any up and down movement would be better served by incremental search. This is something that i want to explore. |