diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-07 22:01:02 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-07 22:01:02 +0100 |
commit | 931f7954c4e989ea74747045319d050e6947d8ab (patch) | |
tree | 234497ef343b4a9c448012cec4116826d0f83c46 /.config/emacs/modules/mm-search.el | |
parent | e0e2c309ab663c40fad4ce4ef7a695530ba86fdd (diff) |
emacs: Add mm-search.el
Diffstat (limited to '.config/emacs/modules/mm-search.el')
-rw-r--r-- | .config/emacs/modules/mm-search.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-search.el b/.config/emacs/modules/mm-search.el new file mode 100644 index 0000000..9de1eed --- /dev/null +++ b/.config/emacs/modules/mm-search.el @@ -0,0 +1,20 @@ +;;; mm-search.el --- Emacs text searching -*- lexical-binding: t; -*- + +;;; Classic Emacs text search + +(use-package isearch + :demand t + :bind ( :map isearch-mode-map + ("M-/" . isearch-complete) + :map minibuffer-local-isearch-map + ("M-/" . isearch-complete-edit)) + :custom + (search-whitespace-regexp ".*?") + (isearch-lax-whitespace t) + (isearch-regexp-lax-whitespace nil) + (isearch-lazy-count t) + (lazy-highlight-initial-delay 0) + (lazy-count-prefix-format "(%s/%s) ") + (isearch-repeat-on-direction-change t)) + +(provide 'mm-search)
\ No newline at end of file |