Variable: esc-map

esc-map is a variable defined in subr.el.gz.

Value

Large value
!              shell-command
$              ispell-word
%              query-replace
&              async-shell-command
'              abbrev-prefix-mark
(              insert-parentheses
)              move-past-close-and-reindent
,              xref-pop-marker-stack
-              negative-argument
.              xref-find-definitions
/              dabbrev-expand
:              eval-expression
;              comment-dwim
<              beginning-of-buffer
<begin>        beginning-of-buffer-other-window
<end>          end-of-buffer-other-window
<f10>          toggle-frame-maximized
<home>         beginning-of-buffer-other-window
<left>         backward-word
<next>         scroll-other-window
<prior>        scroll-other-window-down
<right>        forward-word
=              count-words-region
>              end-of-buffer
?              xref-find-references
@              mark-word
C-%            query-replace-regexp
C--            negative-argument
C-.            xref-find-apropos
C-/            dabbrev-completion
C-0            digit-argument
C-1            digit-argument
C-2            digit-argument
C-3            digit-argument
C-4            digit-argument
C-5            digit-argument
C-6            digit-argument
C-7            digit-argument
C-8            digit-argument
C-9            digit-argument
C-<backspace>  backward-kill-sexp
C-<delete>     backward-kill-sexp
C-<down>       down-list
C-<end>        end-of-defun
C-<home>       beginning-of-defun
C-<left>       backward-sexp
C-<right>      forward-sexp
C-<up>         backward-up-list
C-@            mark-sexp
C-S-l          recenter-other-window
C-S-v          scroll-other-window-down
C-SPC          mark-sexp
C-\            indent-region
C-_            undo-redo
C-a            beginning-of-defun
C-b            backward-sexp
C-c            exit-recursive-edit
C-d            down-list
C-e            end-of-defun
C-f            forward-sexp
C-h            mark-defun
C-j            default-indent-new-line
C-k            kill-sexp
C-l            reposition-window
C-n            forward-list
C-o            split-line
C-p            backward-list
C-r            isearch-backward-regexp
C-s            isearch-forward-regexp
C-t            transpose-sexps
C-u            backward-up-list
C-v            scroll-other-window
C-w            append-next-kill
DEL            backward-kill-word
ESC ESC        keyboard-escape-quit
M-:            eval-expression
SPC            just-one-space
TAB            complete-symbol
X              execute-extended-command-for-buffer
\              delete-horizontal-space
^              delete-indentation
`              tmm-menubar
a              backward-sentence
b              backward-word
c              capitalize-word
d              kill-word
e              forward-sentence
f              forward-word
g M-g          goto-line
g M-n          next-error
g M-p          previous-error
g TAB          move-to-column
g c            goto-char
g g            goto-line
g n            next-error
g p            previous-error
h              mark-paragraph
i              tab-to-tab-stop
j              default-indent-new-line
k              kill-sentence
l              downcase-word
m              back-to-indentation
q              fill-paragraph
r              move-to-window-line-top-bottom
s .            isearch-forward-symbol-at-point
s M-.          isearch-forward-thing-at-point(var)/isearch-forward-thing-at-point(fun)
s M-w          eww-search-words
s _            isearch-forward-symbol
s h .          highlight-symbol-at-point
s h f          hi-lock-find-patterns
s h l          highlight-lines-matching-regexp
s h p          highlight-phrase
s h r          highlight-regexp
s h u          unhighlight-regexp
s h w          hi-lock-write-interactive-patterns
s o            occur
s w            isearch-forward-word
t              transpose-words
u              upcase-word
v              scroll-down-command
w              kill-ring-save
x              execute-extended-command
y              yank-pop
z              zap-to-char
{              backward-paragraph
|              shell-command-on-region
}              forward-paragraph
~              not-modified
€..\x3FFFFF           digit-argument

Documentation

Default keymap for ESC (meta) commands.

The normal global definition of the character ESC indirects to this keymap.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
;;;; The global keymap tree.

(defvar esc-map
  (let ((map (make-keymap)))
    (define-key map "u" #'upcase-word)
    (define-key map "l" #'downcase-word)
    (define-key map "c" #'capitalize-word)
    (define-key map "x" #'execute-extended-command)
    (define-key map "X" #'execute-extended-command-for-buffer)
    map)
  "Default keymap for ESC (meta) commands.
The normal global definition of the character ESC indirects to this keymap.")