]> code.delx.au - gnu-emacs-elpa/blob - packages/el-search/el-search.el
el-search-query-replace: add s (toggle splicing) and ? (help) keys
[gnu-emacs-elpa] / packages / el-search / el-search.el
1 ;;; el-search.el --- Expression based incremental search for emacs-lisp-mode -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2015 Free Software Foundation, Inc
4
5 ;; Author: Michael Heerdegen <michael_heerdegen@web.de>
6 ;; Maintainer: Michael Heerdegen <michael_heerdegen@web.de>
7 ;; Created: 29 Jul 2015
8 ;; Keywords: lisp
9 ;; Compatibility: GNU Emacs 25
10 ;; Version: 0.1
11 ;; Package-Requires: ((emacs "25"))
12
13
14 ;; This file is not part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28
29
30 ;;; Commentary:
31
32 ;; Introduction
33 ;; ============
34 ;;
35 ;;
36 ;; The main user entry point is `el-search-pattern'. This command
37 ;; prompts for a `pcase' pattern and searches the current buffer for
38 ;; matching expressions by iteratively `read'ing buffer contents. For
39 ;; any match, point is put at the beginning of the expression found
40 ;; (unlike isearch which puts point at the end of matches).
41 ;;
42 ;; It doesn't matter how the code is actually formatted. Comments are
43 ;; ignored, and strings are treated as atomic objects, their contents
44 ;; are not being searched.
45 ;;
46 ;; Example 1: if you enter
47 ;;
48 ;; 97
49 ;;
50 ;; at the prompt, this will find any occurrence of the number 97 in
51 ;; the code, but not 977 or (+ 90 7) or "My string containing 97".
52 ;; But it will find anything `eq' to 97 after reading, e.g. #x61 or
53 ;; ?a.
54 ;;
55 ;;
56 ;; Example 2: If you enter the pattern
57 ;;
58 ;; `(defvar ,_)
59 ;;
60 ;; you search for all defvar forms that don't specify an init value.
61 ;;
62 ;; The following will search for defvar forms with a docstring whose
63 ;; first line is longer than 70 characters:
64 ;;
65 ;; `(defvar ,_ ,_
66 ;; ,(and s (guard (< 70 (length (car (split-string s "\n")))))))
67 ;;
68 ;;
69 ;; When a search pattern is processed, the searched buffer is current
70 ;; with point at the beginning of the currently tested expression.
71 ;;
72 ;;
73 ;; Example 3:
74 ;;
75 ;; I can be useful to use (guard EXP) patterns for side effects.
76 ;;
77 ;; The following pattern will search for symbols defined in any
78 ;; library whose name starts with "cl". As a side effect, it prints
79 ;; the current line number, whether we have a macro or a function, and
80 ;; the defining file in the echo area for each match:
81 ;;
82 ;; (and (pred symbolp)
83 ;; (let file (symbol-file exp))
84 ;; (guard file)
85 ;; (let lib-name (file-name-sans-extension
86 ;; (file-name-nondirectory file)))
87 ;; (guard (string-match-p "^cl" lib-name))
88 ;; (or (and (pred macrop) (let type "macro "))
89 ;; (and (pred functionp) (let type "function "))
90 ;; (let type ""))
91 ;; (guard (message "Line %d: %s`%S' (from \"%s\")"
92 ;; (line-number-at-pos)
93 ;; type
94 ;; exp
95 ;; lib-name)))
96 ;;
97 ;; `message' never returns nil, so the last `guard' always "matches".
98 ;;
99 ;;
100 ;; Convenience
101 ;; ===========
102 ;;
103 ;; For pattern input, the minibuffer is put into `emacs-lisp-mode'.
104 ;;
105 ;; Any input PATTERN is silently transformed into (and exp PATTERN)
106 ;; so that you can always refer to the whole currently tested
107 ;; expression via the variable `exp'.
108 ;;
109 ;; Example 4:
110 ;;
111 ;; If you want to search a buffer for symbols that are defined in
112 ;; "cl-lib", you can use this pattern
113 ;;
114 ;; (guard (and (symbolp exp)
115 ;; (when-let ((file (symbol-file exp)))
116 ;; (string-match-p "cl-lib\\.elc?$" file))))
117 ;;
118 ;;
119 ;; ,----------------------------------------------------------------------
120 ;; | Q: "But I hate `pcase'! Can't we just do without?" |
121 ;; | |
122 ;; | A: Respect that you kept up until here! Just use (guard CODE), where|
123 ;; | CODE is any normal Elisp expression that returns non-nil when and |
124 ;; | only when you have a match. Use the variable `exp' to refer to |
125 ;; | the currently tested expression. Just like in the last example! |
126 ;; `----------------------------------------------------------------------
127 ;;
128 ;;
129 ;; It's cumbersome to write out the same complicated pattern
130 ;; constructs in the minibuffer again and again. You can define your
131 ;; own pcase pattern types for the purpose of el-search with
132 ;; `el-search-defpattern'. It is just like `pcase-defmacro', but the
133 ;; effect is limited to this package. See C-h f `el-search-pattern'
134 ;; for a list of predefined additional pattern forms.
135 ;;
136 ;;
137 ;; Replacing
138 ;; =========
139 ;;
140 ;; You can replace expressions with command `el-search-query-replace'.
141 ;; You are queried for a (pcase) pattern and a replacement expression.
142 ;; For each match of the pattern, the replacement expression is
143 ;; evaluated with the bindings created by the pcase matching in
144 ;; effect, and printed to produce the replacement string.
145 ;;
146 ;; Example: In some buffer you want to swap the two expressions at the
147 ;; places of the first two arguments in all calls of function `foo',
148 ;; so that e.g.
149 ;;
150 ;; (foo 'a (* 2 (+ 3 4)) t)
151 ;;
152 ;; becomes
153 ;;
154 ;; (foo (* 2 (+ 3 4)) 'a t).
155 ;;
156 ;; This will do it:
157 ;;
158 ;; M-x el-search-query-replace RET
159 ;; `(foo ,a ,b . ,rest) RET
160 ;; `(foo ,b ,a . ,rest) RET
161 ;;
162 ;; Type y to replace a match and go to the next one, r to replace
163 ;; without moving, SPC to go to the next match and ! to replace all
164 ;; remaining matches automatically. q quits. n is like SPC, so that
165 ;; y and n work like in isearch (meaning "yes" and "no") if you are
166 ;; used to that.
167 ;;
168 ;; It is possible to replace a match with multiple expressions using
169 ;; "splicing mode". When it is active, the replacement expression
170 ;; must evaluate to a list, and is spliced instead of inserted into
171 ;; the buffer for any replaced match. Use s to toggle splicing mode
172 ;; in a `el-search-query-replace' session.
173 ;;
174 ;;
175 ;; Suggested key bindings
176 ;; ======================
177 ;;
178 ;; (define-key emacs-lisp-mode-map [(control ?S)] #'el-search-pattern)
179 ;; (define-key emacs-lisp-mode-map [(control ?%)] #'el-search-query-replace)
180 ;;
181 ;; (define-key isearch-mode-map [(control ?S)] #'el-search-search-from-isearch)
182 ;; (define-key isearch-mode-map [(control ?%)] #'el-search-replace-from-isearch)
183 ;;
184 ;; The bindings in `isearch-mode-map' let you conveniently switch to
185 ;; elisp searching from isearch.
186 ;;
187 ;;
188 ;; Bugs, Known Limitations
189 ;; =======================
190 ;;
191 ;; - Replacing: in some cases the reader syntax of forms
192 ;; is changing due to reading+printing. "Some" because we can treat
193 ;; that problem in most cases.
194 ;;
195 ;; - Similarly: Comments are normally preserved (where it makes
196 ;; sense). But when replacing like `(foo ,a ,b) -> `(foo ,b ,a)
197 ;;
198 ;; in a content like
199 ;;
200 ;; (foo
201 ;; a
202 ;; ;;a comment
203 ;; b)
204 ;;
205 ;; the comment will be lost.
206 ;;
207 ;;
208 ;; Acknowledgments
209 ;; ===============
210 ;;
211 ;; Thanks to Stefan Monnier for corrections and advice.
212 ;;
213 ;;
214 ;; TODO:
215 ;;
216 ;; - change replace interface to include toggle(s)
217 ;;
218 ;; - detect infloops when replacing automatically (e.g. for 1 -> '(1))
219 ;;
220 ;; - highlight matches around point in a timer
221 ;;
222 ;; - implement backward searching
223 ;;
224 ;; - improve docstrings
225 ;;
226 ;; - handle more reader syntaxes, e.g. #n, #n#
227 ;;
228 ;; - Implement sessions; add multi-file support based on iterators. A
229 ;; file list is read in (or the user can specify an iterator as a
230 ;; variable). The state in the current buffer is just (buffer
231 ;; . marker). Or should this be abstracted into an own lib? Could
232 ;; be named "files-session" or so.
233
234
235
236 ;;; Code:
237
238 ;;;; Requirements
239
240 (eval-when-compile
241 (require 'subr-x))
242
243 (require 'cl-lib)
244 (require 'elisp-mode)
245 (require 'thingatpt)
246 (require 'help-fns) ;el-search--make-docstring
247
248
249 ;;;; Configuration stuff
250
251 (defgroup el-search nil
252 "Expression based search and replace for `emacs-lisp-mode'."
253 :group 'lisp)
254
255 (defcustom el-search-this-expression-identifier 'exp
256 "Name of the identifier referring to the current expression.
257 The default value is `exp'. You can use this name in the search
258 prompt to refer to the value of the currently tested expression."
259 :type 'symbol)
260
261 (defface el-search-match '((((background dark)) (:background "#0000A0"))
262 (t (:background "DarkSlateGray1")))
263 "Face for highlighting the current match.")
264
265
266 ;;;; Helpers
267
268 (defun el-search--print (expr)
269 (let ((print-quoted t)
270 (print-length nil)
271 (print-level nil))
272 (prin1-to-string expr)))
273
274 (defvar el-search-read-expression-map
275 (let ((map (make-sparse-keymap)))
276 (set-keymap-parent map read-expression-map)
277 (define-key map [(control ?g)] #'abort-recursive-edit)
278 (define-key map [up] nil)
279 (define-key map [down] nil)
280 (define-key map [(control meta backspace)] #'backward-kill-sexp)
281 (define-key map [(control ?S)] #'exit-minibuffer)
282 map)
283 "Map for reading input with `el-search-read-expression'.")
284
285 ;; $$$$$FIXME: this should be in Emacs! There is only a helper `read--expression'.
286 (defun el-search-read-expression (prompt &optional initial-contents hist default read)
287 "Read expression for `my-eval-expression'."
288 (minibuffer-with-setup-hook
289 (lambda ()
290 (emacs-lisp-mode)
291 (use-local-map el-search-read-expression-map)
292 (setq font-lock-mode t)
293 (funcall font-lock-function 1)
294 (backward-sexp)
295 (indent-sexp)
296 (goto-char (point-max)))
297 (read-from-minibuffer prompt initial-contents el-search-read-expression-map read
298 (or hist 'read-expression-history) default)))
299
300 (defvar el-search--initial-mb-contents nil)
301
302 (defun el-search--read-pattern (prompt &optional default read)
303 (let ((this-sexp (sexp-at-point)))
304 (minibuffer-with-setup-hook
305 (lambda ()
306 (when this-sexp
307 (let ((more-defaults (list (concat "'" (el-search--print this-sexp)))))
308 (setq-local minibuffer-default-add-function
309 (lambda () (if (listp minibuffer-default)
310 (append minibuffer-default more-defaults)
311 (cons minibuffer-default more-defaults)))))))
312 (el-search-read-expression
313 prompt el-search--initial-mb-contents 'el-search-history default read))))
314
315 (defun el-search--end-of-sexp ()
316 ;;Point must be at sexp beginning
317 (or (scan-sexps (point) 1) (point-max)))
318
319 (defun el-search--ensure-sexp-start ()
320 "Move point to the beginning of the next sexp if necessary.
321 Don't move if already at beginning of a sexp.
322 Point must not be inside a string or comment."
323 (let ((not-done t) res)
324 (while not-done
325 (let ((stop-here nil)
326 (looking-at-from-back (lambda (regexp n)
327 (save-excursion
328 (backward-char n)
329 (looking-at regexp)))))
330 (while (not stop-here)
331 (cond
332 ((eobp) (signal 'end-of-buffer nil))
333 ((looking-at (rx (and (* space) ";"))) (forward-line))
334 ((looking-at (rx (+ (or space "\n")))) (goto-char (match-end 0)))
335
336 ;; FIXME: can the rest be done more generically?
337 ((and (looking-at (rx (or (syntax symbol) (syntax word))))
338 (not (looking-at "\\_<"))
339 (not (funcall looking-at-from-back ",@" 2)))
340 (forward-symbol 1))
341 ((or (and (looking-at "'") (funcall looking-at-from-back "#" 1))
342 (and (looking-at "@") (funcall looking-at-from-back "," 1)))
343 (forward-char))
344 (t (setq stop-here t)))))
345 (condition-case nil
346 (progn
347 (setq res (save-excursion (read (current-buffer))))
348 (setq not-done nil))
349 (error (forward-char))))
350 res))
351
352 (defvar el-search--pcase-macros '()
353 "List of additional \"el-search\" pcase macros.")
354
355 (defun el-search--make-docstring ()
356 ;; code mainly from `pcase--make-docstring'
357 (let* ((main (documentation (symbol-function 'el-search-pattern) 'raw))
358 (ud (help-split-fundoc main 'pcase)))
359 (with-temp-buffer
360 (insert (or (cdr ud) main))
361 (mapc
362 (pcase-lambda (`(,symbol . ,fun))
363 (when-let ((doc (documentation fun)))
364 (insert "\n\n-- ")
365 (setq doc (help-fns--signature symbol doc nil fun nil))
366 (insert "\n" (or doc "Not documented."))))
367 (reverse el-search--pcase-macros))
368 (let ((combined-doc (buffer-string)))
369 (if ud (help-add-fundoc-usage combined-doc (car ud)) combined-doc)))))
370
371 (put 'el-search-pattern 'function-documentation '(el-search--make-docstring))
372
373 (defmacro el-search-defpattern (name args &rest body)
374 "Like `pcase-defmacro', but limited to el-search patterns.
375 The semantics is exactly that of `pcase-defmacro', but the scope
376 of the definitions is limited to \"el-search\"."
377 (declare (indent 2) (debug defun))
378 `(setf (alist-get ',name el-search--pcase-macros)
379 (lambda ,args ,@body)))
380
381 (el-search-defpattern string (&rest regexps)
382 "Matches any string that is matched by all REGEXPS."
383 (let ((string (make-symbol "string"))
384 (regexp (make-symbol "regexp")))
385 `(and (pred stringp)
386 (pred (lambda (,string)
387 (cl-every
388 (lambda (,regexp) (string-match-p ,regexp ,string))
389 (list ,@regexps)))))))
390
391 (el-search-defpattern symbol (&rest regexps)
392 "Matches any symbol whose name is matched by all REGEXPS."
393 `(and (pred symbolp)
394 (app symbol-name (string ,@regexps))))
395
396 (defun el-search--match-symbol-file (regexp symbol)
397 (when-let ((symbol-file (and (symbolp symbol)
398 (symbol-file symbol))))
399 (string-match-p
400 (if (symbolp regexp) (concat "\\`" (symbol-name regexp) "\\'") regexp)
401 (file-name-sans-extension (file-name-nondirectory symbol-file)))))
402
403 (el-search-defpattern source (regexp)
404 "Matches any symbol whose `symbol-file' is matched by REGEXP.
405
406 This pattern matches when the object is a symbol for that
407 `symbol-file' returns a (non-nil) FILE-NAME that fulfills
408 (string-match-p REGEXP (file-name-sans-extension
409 (file-name-nondirectory FILENAME)))
410
411 REGEXP can also be a symbol, in which case
412
413 (concat \"^\" (symbol-name regexp) \"$\")
414
415 is used as regular expression."
416 `(pred (el-search--match-symbol-file ,regexp)))
417
418 (defun el-search--match-key-sequence (keys expr)
419 (when-let ((expr-keys (pcase expr
420 ((or (pred stringp) (pred vectorp)) expr)
421 (`(kbd ,(and (pred stringp) string)) (ignore-errors (kbd string))))))
422 (apply #'equal
423 (mapcar (lambda (keys) (ignore-errors (key-description keys)))
424 (list keys expr-keys)))))
425
426 (el-search-defpattern keys (key-sequence)
427 "Matches any description of the KEY-SEQUENCE.
428 KEY-SEQUENCE is a key description in a format that Emacs
429 understands.
430
431 This pattern matches any description of the same key sequence.
432
433 Example: the pattern
434
435 (keys (kbd \"C-s\"))
436
437 matches any of these expressions:
438
439 (kbd \"C-s\")
440 [(control ?s)]
441 \"\\C-s\"
442
443 Any of these could be used as equivalent KEY-SEQUENCE in terms of
444 this pattern type."
445 `(pred (el-search--match-key-sequence ,key-sequence)))
446
447 (defmacro el-search--with-additional-pcase-macros (&rest body)
448 `(cl-letf ,(mapcar (pcase-lambda (`(,symbol . ,fun))
449 `((get ',symbol 'pcase-macroexpander) #',fun))
450 el-search--pcase-macros)
451 ,@body))
452
453 (defun el-search--matcher (pattern &rest body)
454 (eval
455 `(el-search--with-additional-pcase-macros
456 (let ((warning-suppress-log-types '((bytecomp))))
457 (byte-compile
458 (lambda (expression)
459 (pcase expression
460 (,pattern ,@(or body (list t)))
461 (_ nil))))))))
462
463 (defun el-search--match-p (matcher expression)
464 (funcall matcher expression))
465
466 (defun el-search--wrap-pattern (pattern)
467 `(and ,el-search-this-expression-identifier ,pattern))
468
469 (defun el-search--skip-expression (expression &optional read)
470 ;; Move forward at least one character. Don't move into a string or
471 ;; comment. Don't move further than the beginning of the next sexp.
472 ;; Try to move as far as possible. Point must be at the beginning
473 ;; of an expression.
474 ;; If there are positions where `read' would succeed, but that do
475 ;; not represent a valid sexp start, move past them (e.g. when
476 ;; before "#'" move past both characters).
477 ;;
478 ;; EXPRESSION must be the (read) expression at point, but when READ
479 ;; is non-nil, ignore the first argument and read the expression at
480 ;; point instead.
481 (when read (setq expression (save-excursion (read (current-buffer)))))
482 (cond
483 ((or (null expression)
484 (equal [] expression)
485 (not (or (listp expression) (vectorp expression))))
486 (goto-char (el-search--end-of-sexp)))
487 ((looking-at (rx (or ",@" "," "#'" "'")))
488 (goto-char (match-end 0)))
489 (t (forward-char))))
490
491 (defun el-search--search-pattern (pattern &optional noerror)
492 "Search elisp buffer with `pcase' PATTERN.
493 Set point to the beginning of the occurrence found and return
494 point. Optional second argument, if non-nil, means if fail just
495 return nil (no error)."
496
497 (let ((matcher (el-search--matcher pattern)) (match-beg nil) (opoint (point)) current-expr)
498
499 ;; when inside a string or comment, move past it
500 (let ((syntax-here (syntax-ppss)))
501 (when (nth 3 syntax-here) ;inside a string
502 (goto-char (nth 8 syntax-here))
503 (forward-sexp))
504 (when (nth 4 syntax-here) ;inside a comment
505 (forward-line 1)
506 (while (and (not (eobp)) (looking-at (rx (and (* space) ";"))))
507 (forward-line 1))))
508
509 (if (catch 'no-match
510 (while (not match-beg)
511 (condition-case nil
512 (setq current-expr (el-search--ensure-sexp-start))
513 (end-of-buffer
514 (goto-char opoint)
515 (throw 'no-match t)))
516 (if (el-search--match-p matcher current-expr)
517 (setq match-beg (point)
518 opoint (point))
519 (el-search--skip-expression current-expr))))
520 (if noerror nil (signal 'end-of-buffer nil)))
521 match-beg))
522
523 (defun el-search--do-subsexps (pos do-fun &optional ret-fun bound)
524 ;; In current buffer, for any expression start between POS and BOUND
525 ;; or (point-max), in order, call two argument function DO-FUN with
526 ;; the current sexp string and the ending position of the current
527 ;; sexp. When done, with RET-FUN given, call it with no args and
528 ;; return the result; else, return nil.
529 (save-excursion
530 (goto-char pos)
531 (condition-case nil
532 (while (< (point) (or bound (point-max)))
533 (let* ((this-sexp-end (save-excursion (thing-at-point--end-of-sexp) (point)))
534 (this-sexp-string (buffer-substring-no-properties (point) this-sexp-end)))
535 (funcall do-fun this-sexp-string this-sexp-end)
536 (el-search--skip-expression (read this-sexp-string))
537 (el-search--ensure-sexp-start)))
538 (end-of-buffer))
539 (when ret-fun (funcall ret-fun))))
540
541 (defun el-search--create-read-map (&optional pos)
542 (let ((mapping '()))
543 (el-search--do-subsexps
544 (or pos (point))
545 (lambda (sexp _) (push (cons (read sexp) sexp) mapping))
546 (lambda () (nreverse mapping))
547 (save-excursion (thing-at-point--end-of-sexp) (point)))))
548
549 (defun el-search--repair-replacement-layout (printed mapping)
550 (with-temp-buffer
551 (insert printed)
552 (el-search--do-subsexps
553 (point-min)
554 (lambda (sexp sexp-end)
555 (when-let ((old (cdr (assoc (read sexp) mapping))))
556 (delete-region (point) sexp-end)
557 (when (string-match-p "\n" old)
558 (unless (looking-back "^[[:space:]]*" (line-beginning-position))
559 (insert "\n"))
560 (unless (looking-at "[[:space:]\)]*$")
561 (insert "\n")
562 (backward-char)))
563 (save-excursion (insert old))))
564 (lambda () (buffer-substring (point-min) (point-max))))))
565
566
567 ;;;; Highlighting
568
569 (defvar-local el-search-hl-overlay nil)
570
571 (defvar el-search-keep-hl nil)
572
573 (defun el-search-hl-sexp (&optional bounds)
574 (let ((bounds (or bounds
575 (list (point) (el-search--end-of-sexp)))))
576 (if (overlayp el-search-hl-overlay)
577 (apply #'move-overlay el-search-hl-overlay bounds)
578 (overlay-put (setq el-search-hl-overlay (apply #'make-overlay bounds))
579 'face 'el-search-match)))
580 (add-hook 'post-command-hook #'el-search-hl-post-command-fun t t))
581
582 (defun el-search-hl-remove ()
583 (when (overlayp el-search-hl-overlay)
584 (delete-overlay el-search-hl-overlay)))
585
586 (defun el-search-hl-post-command-fun ()
587 (unless (or el-search-keep-hl
588 (eq this-command 'el-search-query-replace)
589 (eq this-command 'el-search-pattern))
590 (el-search-hl-remove)
591 (remove-hook 'post-command-hook 'el-search-hl-post-command-fun t)))
592
593
594 ;;;; Core functions
595
596 (defvar el-search-history '()
597 "List of input strings.")
598
599 (defvar el-search-success nil)
600 (defvar el-search-current-pattern nil)
601
602 ;;;###autoload
603 (defun el-search-pattern (pattern)
604 "Start new or resume last elisp search.
605
606 Search current buffer for expressions that are matched by `pcase'
607 PATTERN. Use `read' to transform buffer contents into
608 expressions.
609
610
611 Additional `pcase' pattern types to be used with this command can
612 be defined with `el-search-defpattern'.
613
614 The following additional pattern types are currently defined:\n"
615 (interactive (list (if (and (eq this-command last-command)
616 el-search-success)
617 el-search-current-pattern
618 (let ((pattern
619 (el-search--read-pattern "Find pcase pattern: "
620 (car el-search-history)
621 t)))
622 ;; A very common mistake: input "foo" instead of "'foo"
623 (when (and (symbolp pattern)
624 (not (eq pattern '_))
625 (or (not (boundp pattern))
626 (not (eq (symbol-value pattern) pattern))))
627 (error "Please don't forget the quote when searching for a symbol"))
628 (el-search--wrap-pattern pattern)))))
629 (setq this-command 'el-search-pattern) ;in case we come from isearch
630 (setq el-search-current-pattern pattern)
631 (let ((opoint (point)))
632 (when (and (eq this-command last-command) el-search-success)
633 (el-search--skip-expression nil t))
634 (setq el-search-success nil)
635 (message "%s" (substitute-command-keys "Type \\[el-search-pattern] to repeat"))
636 (when (condition-case nil
637 (el-search--search-pattern pattern)
638 (end-of-buffer (message "No match")
639 (goto-char opoint)
640 (el-search-hl-remove)
641 (ding)
642 nil))
643 (setq el-search-success t)
644 (el-search-hl-sexp))))
645
646 (defvar el-search-search-and-replace-help-string
647 "\
648 y Replace this match and move to the next.
649 SPC or n Skip this match and move to the next.
650 r Replace this match but don't move.
651 ! Replace all remaining matches automatically.
652 q Quit. To resume, use e.g. `repeat-complex-command'.
653 ? Show this help.
654 s Toggle splicing mode. When splicing mode is
655 on (default off), the replacement expression must
656 evaluate to a list, and the result is spliced into the
657 buffer, instead of just inserted.
658
659 Hit any key to proceed."
660 "Help string for ? in `el-search-query-replace'.")
661
662 (defun el-search-search-and-replace-pattern (pattern replacement &optional mapping splice)
663 (let ((replace-all nil) (nbr-replaced 0) (nbr-skipped 0) (done nil)
664 (el-search-keep-hl t) (opoint (point))
665 (get-replacement (el-search--matcher pattern replacement)))
666 (unwind-protect
667 (while (and (not done) (el-search--search-pattern pattern t))
668 (setq opoint (point))
669 (unless replace-all (el-search-hl-sexp))
670 (let* ((read-mapping (el-search--create-read-map))
671 (region (list (point) (el-search--end-of-sexp)))
672 (substring (apply #'buffer-substring-no-properties region))
673 (expr (read substring))
674 (replaced-this nil)
675 (new-expr (funcall get-replacement expr))
676 (get-replacement-string
677 (lambda () (if (and splice (not (listp new-expr)))
678 (error "Expression to splice in is an atom")
679 (el-search--repair-replacement-layout
680 (if splice
681 (mapconcat #'el-search--print new-expr " ")
682 (el-search--print new-expr))
683 (append mapping read-mapping)))))
684 (to-insert (funcall get-replacement-string))
685 (do-replace (lambda ()
686 (atomic-change-group
687 (apply #'delete-region region)
688 (let ((inhibit-message t)
689 (opoint (point)))
690 (insert to-insert)
691 (indent-region opoint (point))
692 (el-search-hl-sexp (list opoint (point)))
693 (goto-char opoint)))
694 (cl-incf nbr-replaced)
695 (setq replaced-this t))))
696 (if replace-all
697 (funcall do-replace)
698 (while (not (pcase (if replaced-this
699 (read-char-choice "[SPC ! q] (? for help)"
700 '(?\ ?! ?q ?n ??))
701 (read-char-choice
702 (concat "Replace this occurrence"
703 (if (or (string-match-p "\n" to-insert)
704 (< 40 (length to-insert)))
705 "" (format " with `%s'" to-insert))
706 "? "
707 (if splice "{splice} " "")
708 "[y SPC r ! s q] (? for help)" )
709 '(?y ?n ?r ?\ ?! ?q ?s ??)))
710 (?r (funcall do-replace)
711 nil)
712 (?y (funcall do-replace)
713 t)
714 ((or ?\ ?n)
715 (unless replaced-this (cl-incf nbr-skipped))
716 t)
717 (?! (unless replaced-this
718 (funcall do-replace))
719 (setq replace-all t)
720 t)
721 (?s (cl-callf not splice)
722 (setq to-insert (funcall get-replacement-string))
723 nil)
724 (?q (setq done t)
725 t)
726 (?? (ignore (read-char el-search-search-and-replace-help-string))
727 nil)))))
728 (unless (or done (eobp)) (el-search--skip-expression nil t)))))
729 (el-search-hl-remove)
730 (goto-char opoint)
731 (message "Replaced %d matches%s"
732 nbr-replaced
733 (if (zerop nbr-skipped) ""
734 (format " (%d skipped)" nbr-skipped)))))
735
736 (defun el-search-query-replace-read-args ()
737 (barf-if-buffer-read-only)
738 (let* ((from (el-search--read-pattern "Replace from: "))
739 (to (let ((el-search--initial-mb-contents nil))
740 (el-search--read-pattern "Replace with result of evaluation of: " from))))
741 (list (el-search--wrap-pattern (read from)) (read to)
742 (with-temp-buffer
743 (insert to)
744 (el-search--create-read-map 1)))))
745
746 ;;;###autoload
747 (defun el-search-query-replace (from to &optional mapping)
748 "Replace some occurrences of FROM pattern with evaluated TO."
749 (interactive (el-search-query-replace-read-args))
750 (setq this-command 'el-search-query-replace) ;in case we come from isearch
751 (setq el-search-current-pattern from)
752 (barf-if-buffer-read-only)
753 (el-search-search-and-replace-pattern from to mapping))
754
755 (defun el-search--take-over-from-isearch ()
756 (let ((other-end isearch-other-end)
757 (input isearch-string))
758 (isearch-exit)
759 (when (and other-end (< other-end (point)))
760 (goto-char other-end))
761 input))
762
763 ;;;###autoload
764 (defun el-search-search-from-isearch ()
765 ;; FIXME: an interesting alternative would be to really integrate it
766 ;; with Isearch, using `isearch-search-fun-function'.
767 ;; Alas, this is not trivial if we want to transfer our optimizations.
768 (interactive)
769 (let ((el-search--initial-mb-contents (concat "'" (el-search--take-over-from-isearch))))
770 ;; use `call-interactively' so we get recorded in `extended-command-history'
771 (call-interactively #'el-search-pattern)))
772
773 ;;;###autoload
774 (defun el-search-replace-from-isearch ()
775 (interactive)
776 (let ((el-search--initial-mb-contents (concat "'" (el-search--take-over-from-isearch))))
777 (call-interactively #'el-search-query-replace)))
778
779
780
781 (provide 'el-search)
782 ;;; el-search.el ends here