Variable: search-map

search-map is a variable defined in bindings.el.gz.

Value

.    isearch-forward-symbol-at-point
M-.  isearch-forward-thing-at-point(var)/isearch-forward-thing-at-point(fun)
M-w  eww-search-words
_    isearch-forward-symbol
h .  highlight-symbol-at-point
h f  hi-lock-find-patterns
h l  highlight-lines-matching-regexp
h p  highlight-phrase
h r  highlight-regexp
h u  unhighlight-regexp
h w  hi-lock-write-interactive-patterns
o    occur
w    isearch-forward-word

Documentation

Keymap for search related commands.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar-keymap search-map
  :doc "Keymap for search related commands."
  "o"   #'occur
  "M-w" #'eww-search-words
  "h r" #'highlight-regexp
  "h p" #'highlight-phrase
  "h l" #'highlight-lines-matching-regexp
  "h ." #'highlight-symbol-at-point
  "h u" #'unhighlight-regexp
  "h f" #'hi-lock-find-patterns
  "h w" #'hi-lock-write-interactive-patterns)