Variable: vcursor-map

vcursor-map is a variable defined in vcursor.el.gz.

Value

<    vcursor-beginning-of-buffer
>    vcursor-end-of-buffer
C-a  vcursor-beginning-of-line
C-b  vcursor-backward-char
C-e  vcursor-end-of-line
C-f  vcursor-forward-char
C-n  vcursor-next-line
C-p  vcursor-previous-line
C-r  vcursor-isearch-backward
C-s  vcursor-isearch-forward
C-v  vcursor-scroll-up
C-y  vcursor-copy-word
M-b  vcursor-backward-word
M-l  vcursor-copy-line
M-v  vcursor-scroll-down
M-w  vcursor-forward-word
M-x  vcursor-execute-command
RET  vcursor-disable
SPC  vcursor-copy
TAB  vcursor-toggle-copy
c    vcursor-compare-windows
g    vcursor-goto
k    vcursor-execute-key
o    vcursor-other-window
t    vcursor-use-vcursor-map(var)/vcursor-use-vcursor-map(fun)
x    vcursor-swap-point

Documentation

Keymap for vcursor command.

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defvar vcursor-map
  (let ((map (make-sparse-keymap)))
    (define-key map "t" #'vcursor-use-vcursor-map)

    (define-key map "\C-p" #'vcursor-previous-line)
    (define-key map "\C-n" #'vcursor-next-line)
    (define-key map "\C-b" #'vcursor-backward-char)
    (define-key map "\C-f" #'vcursor-forward-char)

    (define-key map "\r"   #'vcursor-disable)
    (define-key map " "    #'vcursor-copy)
    (define-key map "\C-y" #'vcursor-copy-word)
    (define-key map "\C-i" #'vcursor-toggle-copy)
    (define-key map "<"    #'vcursor-beginning-of-buffer)
    (define-key map ">"    #'vcursor-end-of-buffer)
    (define-key map "\M-v" #'vcursor-scroll-down)
    (define-key map "\C-v" #'vcursor-scroll-up)
    (define-key map "o"    #'vcursor-other-window)
    (define-key map "g"    #'vcursor-goto)
    (define-key map "x"    #'vcursor-swap-point)
    (define-key map "\C-s" #'vcursor-isearch-forward)
    (define-key map "\C-r" #'vcursor-isearch-backward)
    (define-key map "\C-a" #'vcursor-beginning-of-line)
    (define-key map "\C-e" #'vcursor-end-of-line)
    (define-key map "\M-w" #'vcursor-forward-word)
    (define-key map "\M-b" #'vcursor-backward-word)
    (define-key map "\M-l" #'vcursor-copy-line)
    (define-key map "c"    #'vcursor-compare-windows)
    (define-key map "k"    #'vcursor-execute-key)
    (define-key map "\M-x" #'vcursor-execute-command)
    map)
  "Keymap for vcursor command.")