diff options
author | noa | 2024-11-11 12:05:02 +0800 |
---|---|---|
committer | noa | 2024-11-11 12:05:02 +0800 |
commit | 5733c8111c7c607b22c18180e5c01db4f8e03f13 (patch) | |
tree | bd5f5b2a6eb06d404e29575fc14d3d45fcad0b41 /emacs | |
parent | 2279872a165b8f0f1ba0419942362c2edc764754 (diff) |
Experiment with improving isearch and replace
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 789f3d3..a30532f 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -617,6 +617,13 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (isearch-repeat-on-direction-change t) (isearch-wrap-pause 'no)) +;; I don't like the fact that isearch doesn't respect the minibuffer +(use-package isearch-mb + :ensure t) + +(use-package visual-regexp + :ensure t) + ;; Make window management commands easier to press (global-set-key (kbd "M-o") 'other-window) (global-set-key (kbd "M-1") 'delete-other-windows) |