1 ;;; em-hist.el --- history list management -*- lexical-binding:t -*-
3 ;; Copyright (C) 1999-2014 Free Software Foundation, Inc.
5 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; Eshell's history facility imitates the syntax used by bash
25 ;; ([(bash)History Interaction]). Thus:
27 ;; !ls ; repeat the last command beginning with 'ls'
28 ;; !?ls ; repeat the last command containing ls
29 ;; echo !ls:2 ; echo the second arg of the last 'ls' command
30 ;; !ls<tab> ; complete against all possible words in this
31 ;; ; position, by looking at the history list
32 ;; !ls<C-c SPC> ; expand any matching history input at point
34 ;; Also, most of `comint-mode's keybindings are accepted:
36 ;; M-r ; search backward for a previous command by regexp
37 ;; M-s ; search forward for a previous command by regexp
38 ;; M-p ; access the last command entered, repeatable
39 ;; M-n ; access the first command entered, repeatable
41 ;; C-c M-r ; using current input, find a matching command thus, with
42 ;; ; 'ls' as the current input, it will go back to the same
43 ;; ; command that '!ls' would have selected
44 ;; C-c M-s ; same, but in reverse order
46 ;; Note that some of these keybindings are only available if the
47 ;; `eshell-rebind' is not in use, in which case M-p does what C-c M-r
48 ;; normally would do, and C-p is used instead of M-p. It may seem
49 ;; confusing, but the intention is to make the most useful
50 ;; functionality the most easily accessible. If `eshell-rebind' is
51 ;; not being used, history navigation will use comint's keybindings;
52 ;; if it is, history navigation tries to use similar keybindings to
53 ;; bash. This is all configurable, of course.
57 (eval-when-compile (require 'cl-lib
))
66 (defgroup eshell-hist nil
67 "This module provides command history management."
68 :tag
"History list management"
69 :group
'eshell-module
))
73 (defcustom eshell-hist-load-hook nil
74 "A list of functions to call when loading `eshell-hist'."
75 :version
"24.1" ; removed eshell-hist-initialize
79 (defcustom eshell-hist-unload-hook
83 (remove-hook 'kill-emacs-hook
'eshell-save-some-history
))))
84 "A hook that gets run when `eshell-hist' is unloaded."
88 (defcustom eshell-history-file-name
89 (expand-file-name "history" eshell-directory-name
)
90 "If non-nil, name of the file to read/write input history.
91 See also `eshell-read-history' and `eshell-write-history'.
92 If it is nil, Eshell will use the value of HISTFILE."
93 :type
'(choice (const :tag
"Use HISTFILE" nil
)
97 (defcustom eshell-history-size
128
98 "Size of the input history ring. If nil, use envvar HISTSIZE."
99 :type
'(choice (const :tag
"Use HISTSIZE" nil
)
103 (defcustom eshell-hist-ignoredups nil
104 "If non-nil, don't add input matching the last on the input ring.
105 This mirrors the optional behavior of bash."
109 (defcustom eshell-save-history-on-exit t
110 "Determine if history should be automatically saved.
111 History is always preserved after sanely exiting an Eshell buffer.
112 However, when Emacs is being shut down, this variable determines
113 whether to prompt the user.
114 If set to nil, it means never save history on termination of Emacs.
115 If set to `ask', ask if any Eshell buffers are open at exit time.
116 If set to t, history will always be saved, silently."
117 :type
'(choice (const :tag
"Never" nil
)
118 (const :tag
"Ask" ask
)
119 (const :tag
"Always save" t
))
122 (defcustom eshell-input-filter
125 (not (string-match "\\`\\s-*\\'" str
))))
126 "Predicate for filtering additions to input history.
127 Takes one argument, the input. If non-nil, the input may be saved on
128 the input history list. Default is to save anything that isn't all
133 (put 'eshell-input-filter
'risky-local-variable t
)
135 (defcustom eshell-hist-match-partial t
136 "If non-nil, movement through history is constrained by current input.
137 Otherwise, typing <M-p> and <M-n> will always go to the next history
138 element, regardless of any text on the command line. In that case,
139 <C-c M-r> and <C-c M-s> still offer that functionality."
143 (defcustom eshell-hist-move-to-end t
144 "If non-nil, move to the end of the buffer before cycling history."
148 (defcustom eshell-hist-event-designator
149 "^!\\(!\\|-?[0-9]+\\|\\??[^:^$%*?]+\\??\\|#\\)"
150 "The regexp used to identifier history event designators."
154 (defcustom eshell-hist-word-designator
155 "^:?\\([0-9]+\\|[$^%*]\\)?\\(\\*\\|-[0-9]*\\|[$^%*]\\)?"
156 "The regexp used to identify history word designators."
160 (defcustom eshell-hist-modifier
161 "^\\(:\\([hretpqx&g]\\|s/\\([^/]*\\)/\\([^/]*\\)/\\)\\)*"
162 "The regexp used to identity history modifiers."
166 (defcustom eshell-hist-rebind-keys-alist
167 '(([(control ?p
)] . eshell-previous-input
)
168 ([(control ?n
)] . eshell-next-input
)
169 ([(control up
)] . eshell-previous-input
)
170 ([(control down
)] . eshell-next-input
)
171 ([(control ?r
)] . eshell-isearch-backward
)
172 ([(control ?s
)] . eshell-isearch-forward
)
173 ([(meta ?r
)] . eshell-previous-matching-input
)
174 ([(meta ?s
)] . eshell-next-matching-input
)
175 ([(meta ?p
)] . eshell-previous-matching-input-from-input
)
176 ([(meta ?n
)] . eshell-next-matching-input-from-input
)
177 ([up] . eshell-previous-matching-input-from-input)
178 ([down] . eshell-next-matching-input-from-input))
179 "History keys to bind differently if point is in input text."
180 :type '(repeat (cons (vector :tag "Keys to bind"
181 (repeat :inline t sexp))
182 (function :tag "Command")))
185 ;;; Internal Variables:
187 (defvar eshell-history-ring nil)
188 (defvar eshell-history-index nil)
189 (defvar eshell-matching-input-from-input-string "")
190 (defvar eshell-save-history-index nil)
192 (defvar eshell-isearch-map
193 (let ((map (copy-keymap isearch-mode-map)))
194 (define-key map [(control ?m)] 'eshell-isearch-return)
195 (define-key map [return] 'eshell-isearch-return)
196 (define-key map [(control ?r)] 'eshell-isearch-repeat-backward)
197 (define-key map [(control ?s)] 'eshell-isearch-repeat-forward)
198 (define-key map [(control ?g)] 'eshell-isearch-abort)
199 (define-key map [backspace] 'eshell-isearch-delete-char)
200 (define-key map [delete] 'eshell-isearch-delete-char)
201 (define-key map "\C-c\C-c" 'eshell-isearch-cancel)
203 "Keymap used in isearch in Eshell.")
205 (defvar eshell-rebind-keys-alist)
209 (defun eshell-hist-initialize ()
210 "Initialize the history management code for one Eshell buffer."
211 (add-hook 'eshell-expand-input-functions
212 'eshell-expand-history-references nil t)
214 (when (eshell-using-module 'eshell-cmpl)
215 (add-hook 'pcomplete-try-first-hook
216 'eshell-complete-history-reference nil t))
218 (if (and (eshell-using-module 'eshell-rebind)
219 (not eshell-non-interactive-p))
220 (let ((rebind-alist eshell-rebind-keys-alist))
221 (make-local-variable 'eshell-rebind-keys-alist)
222 (setq eshell-rebind-keys-alist
223 (append rebind-alist eshell-hist-rebind-keys-alist))
224 (set (make-local-variable 'search-invisible) t)
225 (set (make-local-variable 'search-exit-option) t)
226 (add-hook 'isearch-mode-hook
229 (if (>= (point) eshell-last-output-end)
230 (setq overriding-terminal-local-map
231 eshell-isearch-map)))) nil t)
232 (add-hook 'isearch-mode-end-hook
235 (setq overriding-terminal-local-map nil))) nil t))
236 (define-key eshell-mode-map [up] 'eshell-previous-matching-input-from-input
)
237 (define-key eshell-mode-map
[down] 'eshell-next-matching-input-from-input)
238 (define-key eshell-mode-map [(control up)] 'eshell-previous-input)
239 (define-key eshell-mode-map [(control down)] 'eshell-next-input)
240 (define-key eshell-mode-map [(meta ?r)] 'eshell-previous-matching-input)
241 (define-key eshell-mode-map [(meta ?s)] 'eshell-next-matching-input)
242 (define-key eshell-command-map [(meta ?r)]
243 'eshell-previous-matching-input-from-input)
244 (define-key eshell-command-map [(meta ?s)]
245 'eshell-next-matching-input-from-input)
246 (if eshell-hist-match-partial
248 (define-key eshell-mode-map [(meta ?p)]
249 'eshell-previous-matching-input-from-input)
250 (define-key eshell-mode-map [(meta ?n)]
251 'eshell-next-matching-input-from-input)
252 (define-key eshell-command-map [(meta ?p)] 'eshell-previous-input)
253 (define-key eshell-command-map [(meta ?n)] 'eshell-next-input))
254 (define-key eshell-mode-map [(meta ?p)] 'eshell-previous-input)
255 (define-key eshell-mode-map [(meta ?n)] 'eshell-next-input)
256 (define-key eshell-command-map [(meta ?p)]
257 'eshell-previous-matching-input-from-input)
258 (define-key eshell-command-map [(meta ?n)]
259 'eshell-next-matching-input-from-input)))
261 (make-local-variable 'eshell-history-size)
262 (or eshell-history-size
263 (let ((hsize (getenv "HISTSIZE")))
264 (setq eshell-history-size
265 (if (and (stringp hsize)
266 (integerp (setq hsize (string-to-number hsize)))
271 (make-local-variable 'eshell-history-file-name)
272 (or eshell-history-file-name
273 (setq eshell-history-file-name (getenv "HISTFILE")))
275 (make-local-variable 'eshell-history-index)
276 (make-local-variable 'eshell-save-history-index)
278 (if (minibuffer-window-active-p (selected-window))
279 (set (make-local-variable 'eshell-save-history-on-exit) nil)
280 (set (make-local-variable 'eshell-history-ring) nil)
281 (if eshell-history-file-name
282 (eshell-read-history nil t))
284 (add-hook 'eshell-exit-hook 'eshell-write-history nil t))
286 (unless eshell-history-ring
287 (setq eshell-history-ring (make-ring eshell-history-size)))
289 (add-hook 'eshell-exit-hook 'eshell-write-history nil t)
291 (add-hook 'kill-emacs-hook 'eshell-save-some-history)
293 (make-local-variable 'eshell-input-filter-functions)
294 (add-hook 'eshell-input-filter-functions 'eshell-add-to-history nil t)
296 (define-key eshell-command-map [(control ?l)] 'eshell-list-history)
297 (define-key eshell-command-map [(control ?x)] 'eshell-get-next-from-history))
299 (defun eshell-save-some-history ()
300 "Save the history for any open Eshell buffers."
301 (dolist (buf (buffer-list))
302 (if (buffer-live-p buf)
303 (with-current-buffer buf
305 eshell-history-file-name
306 eshell-save-history-on-exit
307 (or (eq eshell-save-history-on-exit t)
309 (format "Save input history for Eshell buffer `%s'? "
310 (buffer-name buf)))))
311 (eshell-write-history))))))
313 (defun eshell/history (&rest args)
314 "List in help buffer the buffer's input history."
315 (eshell-init-print-buffer)
316 (eshell-eval-using-options
318 '((?r "read" nil read-history
319 "read from history file to current history list")
320 (?w "write" nil write-history
321 "write current history list to history file")
322 (?a "append" nil append-history
323 "append current history list to history file")
324 (?h "help" nil nil "display this usage message")
325 :usage "[n] [-rwa [filename]]"
327 "When Eshell is started, history is read from `eshell-history-file-name'.
328 This is also the location where history info will be saved by this command,
329 unless a different file is specified on the command line.")
330 (and (or (not (ring-p eshell-history-ring))
331 (ring-empty-p eshell-history-ring))
332 (error "No history"))
334 (when (and args (string-match "^[0-9]+$" (car args)))
335 (setq length (min (eshell-convert (car args))
336 (ring-length eshell-history-ring))
339 (or read-history write-history append-history)
340 (error "history: extra arguments"))
341 (when (and args (stringp (car args)))
342 (setq file (car args)
345 (read-history (eshell-read-history file))
346 (write-history (eshell-write-history file))
347 (append-history (eshell-write-history file t))
349 (let* ((index (1- (or length (ring-length eshell-history-ring))))
350 (ref (- (ring-length eshell-history-ring) index)))
351 ;; We have to build up a list ourselves from the ring vector.
353 (eshell-buffered-print
354 (format "%5d %s\n" ref (eshell-get-history index)))
355 (setq index (1- index)
360 (defun eshell-put-history (input &optional ring at-beginning)
361 "Put a new input line into the history ring."
362 (unless ring (setq ring eshell-history-ring))
364 (ring-insert-at-beginning ring input)
365 (ring-insert ring input)))
367 (defun eshell-get-history (index &optional ring)
368 "Get an input line from the history ring."
369 (ring-ref (or ring eshell-history-ring) index))
371 (defun eshell-add-input-to-history (input)
372 "Add the string INPUT to the history ring.
373 Input is entered into the input history ring, if the value of
374 variable `eshell-input-filter' returns non-nil when called on the
376 (if (and (funcall eshell-input-filter input)
377 (or (null eshell-hist-ignoredups)
378 (not (ring-p eshell-history-ring))
379 (ring-empty-p eshell-history-ring)
380 (not (string-equal (eshell-get-history 0) input))))
381 (eshell-put-history input))
382 (setq eshell-save-history-index eshell-history-index)
383 (setq eshell-history-index nil))
385 (defun eshell-add-command-to-history ()
386 "Add the command entered at `eshell-command's prompt to the history ring.
387 The command is added to the input history ring, if the value of
388 variable `eshell-input-filter' returns non-nil when called on the
391 This function is supposed to be called from the minibuffer, presumably
392 as a minibuffer-exit-hook."
393 (eshell-add-input-to-history
394 (buffer-substring (minibuffer-prompt-end) (point-max))))
396 (defun eshell-add-to-history ()
397 "Add last Eshell command to the history ring.
398 The command is entered into the input history ring, if the value of
399 variable `eshell-input-filter' returns non-nil when called on the
401 (when (> (1- eshell-last-input-end) eshell-last-input-start)
402 (let ((input (buffer-substring eshell-last-input-start
403 (1- eshell-last-input-end))))
404 (eshell-add-input-to-history input))))
406 (defun eshell-read-history (&optional filename silent)
407 "Sets the buffer's `eshell-history-ring' from a history file.
408 The name of the file is given by the variable
409 `eshell-history-file-name'. The history ring is of size
410 `eshell-history-size', regardless of file size. If
411 `eshell-history-file-name' is nil this function does nothing.
413 If the optional argument SILENT is non-nil, we say nothing about a
414 failure to read the history file.
416 This function is useful for major mode commands and mode hooks.
418 The structure of the history file should be one input command per
419 line, with the most recent command last. See also
420 `eshell-hist-ignoredups' and `eshell-write-history'."
421 (let ((file (or filename eshell-history-file-name)))
426 ((not (file-readable-p file))
428 (message "Cannot read history file %s" file)))
431 (size eshell-history-size)
432 (ring (make-ring size))
433 (ignore-dups eshell-hist-ignoredups))
435 (insert-file-contents file)
436 ;; Save restriction in case file is already visited...
437 ;; Watch for those date stamps in history files!
438 (goto-char (point-max))
439 (while (and (< count size)
440 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$"
442 (let ((history (match-string 1)))
443 (if (or (null ignore-dups)
445 (not (string-equal (ring-ref ring 0) history)))
446 (ring-insert-at-beginning
447 ring (subst-char-in-string ?\177 ?\n history))))
448 (setq count (1+ count))))
449 (setq eshell-history-ring ring
450 eshell-history-index nil))))))
452 (defun eshell-write-history (&optional filename append)
453 "Writes the buffer's `eshell-history-ring' to a history file.
454 The name of the file is given by the variable
455 `eshell-history-file-name'. The original contents of the file are
456 lost if `eshell-history-ring' is not empty. If
457 `eshell-history-file-name' is nil this function does nothing.
459 Useful within process sentinels.
461 See also `eshell-read-history'."
462 (let ((file (or filename eshell-history-file-name)))
466 (null eshell-history-ring)
467 (ring-empty-p eshell-history-ring))
469 ((not (file-writable-p file))
470 (message "Cannot write history file %s" file))
472 (let* ((ring eshell-history-ring)
473 (index (ring-length ring)))
474 ;; Write it all out into a buffer first. Much faster, but
475 ;; messier, than writing it one line at a time.
478 (setq index (1- index))
479 (let ((start (point)))
480 (insert (ring-ref ring index) ?\n)
481 (subst-char-in-region start (1- (point)) ?\n ?\177)))
482 (eshell-with-private-file-modes
483 (write-region (point-min) (point-max) file append
486 (defun eshell-list-history ()
487 "List in help buffer the buffer's input history."
491 (if (re-search-backward "!\\(.+\\)" (line-beginning-position) t)
492 (setq prefix (match-string 1)
493 prelen (length prefix))))
494 (if (or (not (ring-p eshell-history-ring))
495 (ring-empty-p eshell-history-ring))
496 (message "No history")
498 (history-buffer " *Input History*")
499 (index (1- (ring-length eshell-history-ring)))
500 (conf (current-window-configuration)))
501 ;; We have to build up a list ourselves from the ring vector.
503 (let ((hist (eshell-get-history index)))
505 (and (>= (length hist) prelen)
506 (string= (substring hist 0 prelen) prefix)))
507 (setq history (cons hist history))))
508 (setq index (1- index)))
509 ;; Change "completion" to "history reference"
510 ;; to make the display accurate.
511 (with-output-to-temp-buffer history-buffer
512 (display-completion-list
513 (completion-hilit-commonality history (length prefix)))
514 (set-buffer history-buffer)
516 (while (search-backward "completion" nil 'move)
517 (replace-match "history reference")))
519 (message "Hit space to flush")
520 (let ((ch (read-event)))
522 (set-window-configuration conf)
523 (setq unread-command-events (list ch))))))))
525 (defun eshell-hist-word-reference (ref)
526 "Return the word designator index referred to by REF."
528 ((string-match "^[0-9]+$" ref)
529 (string-to-number ref))
530 ((string= "^" ref) 1)
531 ((string= "$" ref) nil)
533 (error "`%%' history word designator not yet implemented"))))
535 (defun eshell-hist-parse-arguments (&optional b e)
536 "Parse current command arguments in a history-code-friendly way."
537 (let ((end (or e (point)))
538 (begin (or b (save-excursion (eshell-bol) (point))))
543 (unless (catch 'eshell-incomplete
545 (setq args (eshell-parse-arguments begin end))))
548 (while (< (point) end)
549 (if (get-text-property (point) 'arg-begin)
550 (nconc posb (list (point))))
551 (if (get-text-property (point) 'arg-end)
553 (list (if (= (1+ (point)) end)
557 (setq posb (cdr posb)
559 (cl-assert (= (length posb) (length args)))
560 (cl-assert (<= (length posb) (length pose))))
561 (setq hist (buffer-substring-no-properties begin end))
562 (let ((b posb) (e pose))
565 (list (substring hist (- (car b) begin)
569 (setq textargs (cdr textargs))
570 (cl-assert (= (length textargs) (length args)))
571 (list textargs posb pose))))
573 (defun eshell-expand-history-references (beg end)
574 "Parse and expand any history references in current input."
575 (let ((result (eshell-hist-parse-arguments beg end)))
577 (let ((textargs (nreverse (nth 0 result)))
578 (posb (nreverse (nth 1 result)))
579 (pose (nreverse (nth 2 result))))
582 (let ((str (eshell-history-reference (car textargs))))
583 (unless (eq str (car textargs))
584 (goto-char (car posb))
585 (insert-and-inherit str)
586 (delete-char (- (car pose) (car posb)))))
587 (setq textargs (cdr textargs)
589 pose (cdr pose))))))))
591 (defvar pcomplete-stub)
592 (defvar pcomplete-last-completion-raw)
593 (declare-function pcomplete-actual-arg "pcomplete")
595 (defun eshell-complete-history-reference ()
596 "Complete a history reference, by completing the event designator."
597 (let ((arg (pcomplete-actual-arg)))
598 (when (string-match "\\`![^:^$*%]*\\'" arg)
599 (setq pcomplete-stub (substring arg 1)
600 pcomplete-last-completion-raw t)
601 (throw 'pcomplete-completions
603 (index (1- (ring-length eshell-history-ring)))
604 (stublen (length pcomplete-stub)))
605 ;; We have to build up a list ourselves from the ring
608 (let ((hist (eshell-get-history index)))
609 (if (and (>= (length hist) stublen)
610 (string= (substring hist 0 stublen)
612 (string-match "^\\([^:^$*% \t\n]+\\)" hist))
613 (setq history (cons (match-string 1 hist)
615 (setq index (1- index)))
616 (let ((fhist (list t)))
617 ;; uniquify the list, but preserve the order
619 (unless (member (car history) fhist)
620 (nconc fhist (list (car history))))
621 (setq history (cdr history)))
624 (defun eshell-history-reference (reference)
625 "Expand directory stack REFERENCE.
626 The syntax used here was taken from the Bash info manual.
627 Returns the resultant reference, or the same string REFERENCE if none
629 ;; `^string1^string2^'
630 ;; Quick Substitution. Repeat the last command, replacing
631 ;; STRING1 with STRING2. Equivalent to `!!:s/string1/string2/'
632 (if (and (eshell-using-module 'eshell-pred)
633 (string-match "\\^\\([^^]+\\)\\^\\([^^]+\\)\\^?\\s-*$"
635 (setq reference (format "!!:s/%s/%s/"
636 (match-string 1 reference)
637 (match-string 2 reference))))
639 ;; Start a history substitution, except when followed by a
640 ;; space, tab, the end of the line, = or (.
641 (if (not (string-match "^![^ \t\n=\(]" reference))
643 (setq eshell-history-index nil)
644 (let ((event (eshell-hist-parse-event-designator reference)))
646 (error "Could not find history event `%s'" reference))
647 (setq eshell-history-index (car event)
648 reference (substring reference (cdr event))
649 event (eshell-get-history eshell-history-index))
650 (if (not (string-match "^[:^$*%]" reference))
652 (let ((word (eshell-hist-parse-word-designator
655 (error "Unable to honor word designator `%s'" reference))
656 (unless (string-match "^[:^$*%][[$^*%0-9-]" reference)
658 (setq event (car word)
659 reference (substring reference (cdr word)))
660 (if (not (and (eshell-using-module 'eshell-pred)
661 (string-match "^:" reference)))
663 (eshell-hist-parse-modifier event reference)))))))
665 (defun eshell-hist-parse-event-designator (reference)
666 "Parse a history event designator beginning in REFERENCE."
667 (let* ((index (string-match eshell-hist-event-designator reference))
668 (end (and index (match-end 0))))
670 (error "Invalid history event designator `%s'" reference))
671 (let* ((event (match-string 1 reference))
674 ((string= event "!") (ring-length eshell-history-ring))
675 ((string= event "#") (error "!# not yet implemented"))
676 ((string-match "^-?[0-9]+$" event)
677 (let ((num (string-to-number event)))
679 (- (ring-length eshell-history-ring) num)
681 ((string-match "^\\(\\??\\)\\([^?]+\\)\\??$" event)
682 (let ((pref (if (> (length (match-string 1 event)) 0)
684 (str (match-string 2 event)))
686 (eshell-previous-matching-input-string-position
687 (concat pref (regexp-quote str)) 1))))
689 (error "Failed to parse event designator `%s'" event)))))
690 (and pos (cons pos end)))))
692 (defun eshell-hist-parse-word-designator (hist reference)
693 "Parse a history word designator beginning for HIST in REFERENCE."
694 (let* ((index (string-match eshell-hist-word-designator reference))
695 (end (and index (match-end 0))))
696 (unless (memq (aref reference 0) '(?: ?^ ?$ ?* ?%))
697 (error "Invalid history word designator `%s'" reference))
698 (let ((nth (match-string 1 reference))
699 (mth (match-string 2 reference))
703 (setq textargs (car (eshell-hist-parse-arguments here (point))))
704 (delete-region here (point))
705 (if (string= nth "*")
707 (error "Invalid history word designator `%s'"
709 (setq nth 1 mth "-$")))
713 (setq nth 0 mth "$"))
714 (if (string= mth "-")
715 (setq mth (- (length textargs) 2))
716 (if (string= mth "*")
718 (if (not (and (> (length mth) 1)
719 (eq (aref mth 0) ?-)))
720 (error "Invalid history word designator `%s'"
722 (setq mth (substring mth 1))))))
723 (unless (numberp nth)
724 (setq nth (eshell-hist-word-reference nth)))
725 (unless (numberp mth)
726 (setq mth (eshell-hist-word-reference mth)))
727 (cons (mapconcat 'identity (eshell-sublist textargs nth mth) "")
730 (defun eshell-hist-parse-modifier (hist reference)
731 "Parse a history modifier beginning for HIST in REFERENCE."
732 (let ((here (point)))
736 (narrow-to-region here (point))
737 (goto-char (point-min))
738 (let ((modifiers (cdr (eshell-parse-modifiers))))
739 (dolist (mod modifiers)
740 (setq hist (funcall mod hist)))
742 (delete-region here (point)))))
744 (defun eshell-get-next-from-history ()
745 "After fetching a line from input history, this fetches the next.
746 In other words, this recalls the input line after the line you
747 recalled last. You can use this to repeat a sequence of input lines."
749 (if eshell-save-history-index
751 (setq eshell-history-index (1+ eshell-save-history-index))
752 (eshell-next-input 1))
753 (message "No previous history command")))
755 (defun eshell-search-arg (arg)
756 ;; First make sure there is a ring and that we are after the process
758 (if (and eshell-hist-move-to-end
759 (< (point) eshell-last-output-end))
760 (goto-char eshell-last-output-end))
761 (cond ((or (null eshell-history-ring)
762 (ring-empty-p eshell-history-ring))
763 (error "Empty input ring"))
765 ;; arg of zero resets search from beginning, and uses arg of
767 (setq eshell-history-index nil)
772 (defun eshell-search-start (arg)
773 "Index to start a directional search, starting at `eshell-history-index'."
774 (if eshell-history-index
775 ;; If a search is running, offset by 1 in direction of arg
776 (mod (+ eshell-history-index (if (> arg 0) 1 -1))
777 (ring-length eshell-history-ring))
778 ;; For a new search, start from beginning or end, as appropriate
780 0 ; First elt for forward search
781 ;; Last elt for backward search
782 (1- (ring-length eshell-history-ring)))))
784 (defun eshell-previous-input-string (arg)
785 "Return the string ARG places along the input ring.
786 Moves relative to `eshell-history-index'."
787 (eshell-get-history (if eshell-history-index
788 (mod (+ arg eshell-history-index)
789 (ring-length eshell-history-ring))
792 (defun eshell-previous-input (arg)
793 "Cycle backwards through input history."
795 (eshell-previous-matching-input "." arg))
797 (defun eshell-next-input (arg)
798 "Cycle forwards through input history."
800 (eshell-previous-input (- arg)))
802 (defun eshell-previous-matching-input-string (regexp arg)
803 "Return the string matching REGEXP ARG places along the input ring.
804 Moves relative to `eshell-history-index'."
805 (let* ((pos (eshell-previous-matching-input-string-position regexp arg)))
806 (if pos (eshell-get-history pos))))
808 (defun eshell-previous-matching-input-string-position
809 (regexp arg &optional start)
810 "Return the index matching REGEXP ARG places along the input ring.
811 Moves relative to START, or `eshell-history-index'."
812 (if (or (not (ring-p eshell-history-ring))
813 (ring-empty-p eshell-history-ring))
814 (error "No history"))
815 (let* ((len (ring-length eshell-history-ring))
816 (motion (if (> arg 0) 1 -1))
817 (n (mod (- (or start (eshell-search-start arg)) motion) len))
818 (tried-each-ring-item nil)
819 (case-fold-search (eshell-under-windows-p))
821 ;; Do the whole search as many times as the argument says.
822 (while (and (/= arg 0) (not tried-each-ring-item))
825 n (mod (+ n motion) len))
826 ;; If we haven't reached a match, step some more.
827 (while (and (< n len) (not tried-each-ring-item)
828 (not (string-match regexp (eshell-get-history n))))
829 (setq n (mod (+ n motion) len)
830 ;; If we have gone all the way around in this search.
831 tried-each-ring-item (= n prev)))
832 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
833 ;; Now that we know which ring element to use, if we found it,
835 (if (string-match regexp (eshell-get-history n))
838 (defun eshell-previous-matching-input (regexp arg)
839 "Search backwards through input history for match for REGEXP.
840 \(Previous history elements are earlier commands.)
841 With prefix argument N, search for Nth previous match.
842 If N is negative, find the next or Nth next match."
843 (interactive (eshell-regexp-arg "Previous input matching (regexp): "))
844 (setq arg (eshell-search-arg arg))
845 (if (> eshell-last-output-end (point))
846 (error "Point not located after prompt"))
847 (let ((pos (eshell-previous-matching-input-string-position regexp arg)))
848 ;; Has a match been found?
851 (setq eshell-history-index pos)
852 (unless (minibuffer-window-active-p (selected-window))
853 (message "History item: %d" (- (ring-length eshell-history-ring) pos)))
854 ;; Can't use kill-region as it sets this-command
855 (delete-region eshell-last-output-end (point))
856 (insert-and-inherit (eshell-get-history pos)))))
858 (defun eshell-next-matching-input (regexp arg)
859 "Search forwards through input history for match for REGEXP.
860 \(Later history elements are more recent commands.)
861 With prefix argument N, search for Nth following match.
862 If N is negative, find the previous or Nth previous match."
863 (interactive (eshell-regexp-arg "Next input matching (regexp): "))
864 (eshell-previous-matching-input regexp (- arg)))
866 (defun eshell-previous-matching-input-from-input (arg)
867 "Search backwards through input history for match for current input.
868 \(Previous history elements are earlier commands.)
869 With prefix argument N, search for Nth previous match.
870 If N is negative, search forwards for the -Nth following match."
872 (if (not (memq last-command '(eshell-previous-matching-input-from-input
873 eshell-next-matching-input-from-input)))
874 ;; Starting a new search
875 (setq eshell-matching-input-from-input-string
876 (buffer-substring (save-excursion (eshell-bol) (point))
878 eshell-history-index nil))
879 (eshell-previous-matching-input
880 (concat "^" (regexp-quote eshell-matching-input-from-input-string))
883 (defun eshell-next-matching-input-from-input (arg)
884 "Search forwards through input history for match for current input.
885 \(Following history elements are more recent commands.)
886 With prefix argument N, search for Nth following match.
887 If N is negative, search backwards for the -Nth previous match."
889 (eshell-previous-matching-input-from-input (- arg)))
891 (defun eshell-test-imatch ()
892 "If isearch match good, put point at the beginning and return non-nil."
893 (if (get-text-property (point) 'history)
894 (progn (beginning-of-line) t)
895 (let ((before (point)))
897 (if (and (not (bolp))
907 (defun eshell-return-to-prompt ()
908 "Once a search string matches, insert it at the end and go there."
909 (setq isearch-other-end nil)
910 (let ((found (eshell-test-imatch)) before)
911 (while (and (not found)
913 (funcall (if isearch-forward
916 isearch-string nil t)))
917 (setq found (eshell-test-imatch)))
920 (goto-char eshell-last-output-end)
921 (delete-region (point) (point-max)))
922 (setq before (point))
923 (let ((text (buffer-substring-no-properties
924 (point) (line-end-position)))
925 (orig (marker-position eshell-last-output-end)))
926 (goto-char eshell-last-output-end)
927 (delete-region (point) (point-max))
928 (when (and text (> (length text) 0))
930 (put-text-property (1- (point)) (point)
931 'last-search-pos before)
932 (set-marker eshell-last-output-end orig)
933 (goto-char eshell-last-output-end))))))
935 (defun eshell-prepare-for-search ()
936 "Make sure the old history file is at the beginning of the buffer."
937 (unless (get-text-property (point-min) 'history)
939 (goto-char (point-min))
940 (let ((end (copy-marker (point) t)))
941 (insert-file-contents eshell-history-file-name)
942 (set-text-properties (point-min) end
943 '(history t invisible t))))))
945 (defun eshell-isearch-backward (&optional invert)
946 "Do incremental regexp search backward through past commands."
948 (let ((inhibit-read-only t))
949 (eshell-prepare-for-search)
950 (goto-char (point-max))
951 (set-marker eshell-last-output-end (point))
952 (delete-region (point) (point-max)))
953 (isearch-mode invert t 'eshell-return-to-prompt))
955 (defun eshell-isearch-repeat-backward (&optional invert)
956 "Do incremental regexp search backward through past commands."
958 (let ((old-pos (get-text-property (1- (point-max))
965 (setq isearch-forward invert)
966 (isearch-search-and-update)))
968 (defun eshell-isearch-forward ()
969 "Do incremental regexp search backward through past commands."
971 (eshell-isearch-backward t))
973 (defun eshell-isearch-repeat-forward ()
974 "Do incremental regexp search backward through past commands."
976 (eshell-isearch-repeat-backward t))
978 (defun eshell-isearch-cancel ()
980 (goto-char eshell-last-output-end)
981 (delete-region (point) (point-max))
982 (call-interactively 'isearch-cancel))
984 (defun eshell-isearch-abort ()
986 (goto-char eshell-last-output-end)
987 (delete-region (point) (point-max))
988 (call-interactively 'isearch-abort))
990 (defun eshell-isearch-delete-char ()
993 (isearch-delete-char)))
995 (defun eshell-isearch-return ()
1003 ;; generated-autoload-file: "esh-groups.el"
1006 ;;; em-hist.el ends here