mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(isearch-message-prefix-add)
(isearch-message-suffix-add): New variables. (isearch-message-prefix): Show additional text from `isearch-message-prefix-add' before "I-search". (isearch-message-suffix): Show additional text from `isearch-message-suffix-add' at the end.
This commit is contained in:
parent
8365922029
commit
ee9b85a84a
@ -533,6 +533,9 @@ Each set is a vector of the form:
|
||||
(defvar isearch-string "") ; The current search string.
|
||||
(defvar isearch-message "") ; text-char-description version of isearch-string
|
||||
|
||||
(defvar isearch-message-prefix-add nil) ; Additonal text for the message prefix
|
||||
(defvar isearch-message-suffix-add nil) ; Additonal text for the message suffix
|
||||
|
||||
(defvar isearch-success t) ; Searching is currently successful.
|
||||
(defvar isearch-error nil) ; Error message for failed search.
|
||||
(defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
|
||||
@ -2163,6 +2166,7 @@ If there is no completion possible, say so and continue searching."
|
||||
(if isearch-word "word " "")
|
||||
(if isearch-regexp "regexp " "")
|
||||
(if multi-isearch-next-buffer-current-function "multi " "")
|
||||
(or isearch-message-prefix-add "")
|
||||
(if nonincremental "search" "I-search")
|
||||
(if isearch-forward "" " backward")
|
||||
(if current-input-method
|
||||
@ -2176,7 +2180,8 @@ If there is no completion possible, say so and continue searching."
|
||||
(concat (if c-q-hack "^Q" "")
|
||||
(if isearch-error
|
||||
(concat " [" isearch-error "]")
|
||||
"")))
|
||||
"")
|
||||
(or isearch-message-suffix-add "")))
|
||||
|
||||
|
||||
;; Searching
|
||||
|
Loading…
Reference in New Issue
Block a user