зеркало из
https://github.com/iharh/notes.git
synced 2025-11-01 22:26:09 +02:00
30 строки
548 B
Plaintext
30 строки
548 B
Plaintext
M-%
|
|
Interactive string find and replace.
|
|
|
|
C-s
|
|
Incremental search forward (hit multiple time for the next occurence)
|
|
|
|
C-w
|
|
Search the word under the cursor. (You can type C-w multiple times to expand the word selection).
|
|
|
|
C-r
|
|
Incremental search backward (hit multiple time for the next occurence)
|
|
|
|
|
|
M-o ???
|
|
Occur from isearch
|
|
|
|
|
|
(cmd isearch-other-window
|
|
;; thank you leo2007!
|
|
(save-selected-window
|
|
(other-window 1)
|
|
(isearch-forward)))
|
|
|
|
(bind "C-M-S" isearch-other-window)
|
|
|
|
|
|
???
|
|
(require 'fuzzy)
|
|
(turn-on-fuzzy-isearch)
|