diff options
| author | Blake Romero <blake@blkrom.com> | 2025-07-10 19:16:16 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-07-10 19:20:57 +0100 |
| commit | 728dfef08c6413c5d8c9ba8272eae53734dc5c00 (patch) | |
| tree | baf9a118fdd0666e913d7687c05a5834f30a2d9a /emacs-config.org | |
| parent | 6901533882baffec488dfaf09674ccbc5cd05d83 (diff) | |
Add case-sensitive searching and isearch minibuffer match count
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index 26b4eeb..b2f2807 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -330,6 +330,15 @@ Allow changing file permissions when in a writable dired buffer. (setq-default wdired-allow-to-change-permissions t)) #+end_src +** Search & Replace +Case-sensitive search by default and show match count in minibuffer. +#+begin_src elisp + (with-eval-after-load 'isearch + (setq-default + case-fold-search nil + isearch-lazy-count t)) +#+end_src + ** Org #+begin_src elisp :noweb yes (with-eval-after-load 'org |
