Variable: hi-lock-map

hi-lock-map is a variable defined in hi-lock.el.gz.

Value

C-x w .  highlight-symbol-at-point
C-x w b  hi-lock-write-interactive-patterns
C-x w h  highlight-regexp
C-x w i  hi-lock-find-patterns
C-x w l  highlight-lines-matching-regexp
C-x w p  highlight-phrase
C-x w r  unhighlight-regexp

Documentation

Key map for hi-lock.

Source Code

;; Defined in /usr/src/emacs/lisp/hi-lock.el.gz
(defvar hi-lock-map
  (let ((map (make-sparse-keymap "Hi Lock")))
    (define-key map "\C-xwi" 'hi-lock-find-patterns)
    (define-key map "\C-xwl" 'highlight-lines-matching-regexp)
    (define-key map "\C-xwp" 'highlight-phrase)
    (define-key map "\C-xwh" 'highlight-regexp)
    (define-key map "\C-xw." 'highlight-symbol-at-point)
    (define-key map "\C-xwr" 'unhighlight-regexp)
    (define-key map "\C-xwb" 'hi-lock-write-interactive-patterns)
    map)
  "Key map for hi-lock.")