Variable: tar-mode-map

tar-mode-map is a variable defined in tar-mode.el.gz.

Value

Large value
-              negative-argument
<down>         tar-next-line
<follow-link>  mouse-face
<mouse-2>      tar-mouse-extract
<up>           tar-previous-line
C              tar-copy
C-d            tar-flag-deleted
C-n            tar-next-line
C-p            tar-previous-line
DEL            tar-unflag-backwards
E              tar-extract-other-window
G              tar-chgrp-entry
I              tar-new-entry
M              tar-chmod-entry
O              tar-chown-entry
R              tar-rename-entry
RET            tar-extract
SPC            tar-next-line
SPC..~         undefined
d              tar-flag-deleted
g              revert-buffer
n              tar-next-line
o              tar-extract-other-window
p              tar-previous-line
u              tar-unflag
v              tar-view
w              woman-tar-extract-file
x              tar-expunge
€..\x3FFFFF           digit-argument
€..\x3FFFFF           tar-extract

Documentation

Local keymap for Tar mode listings.

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defvar-keymap tar-mode-map
  :doc "Local keymap for Tar mode listings."
  :full t :suppress t
  "SPC"    #'tar-next-line
  "C"      #'tar-copy
  "d"      #'tar-flag-deleted
  "C-d"    #'tar-flag-deleted
  "e"      #'tar-extract
  "f"      #'tar-extract
  "RET"    #'tar-extract
  "g"      #'revert-buffer
  "n"      #'tar-next-line
  "C-n"    #'tar-next-line
  "<down>" #'tar-next-line
  "o"      #'tar-extract-other-window
  "p"      #'tar-previous-line
  "C-p"    #'tar-previous-line
  "<up>"   #'tar-previous-line
  "I"      #'tar-new-entry
  "R"      #'tar-rename-entry
  "u"      #'tar-unflag
  "v"      #'tar-view
  "w"      #'woman-tar-extract-file
  "x"      #'tar-expunge
  "DEL"    #'tar-unflag-backwards
  "E"      #'tar-extract-other-window
  "M"      #'tar-chmod-entry
  "G"      #'tar-chgrp-entry
  "O"      #'tar-chown-entry

  ;; Let mouse-1 follow the link.
  "<follow-link>" 'mouse-face
  "<mouse-2>"     #'tar-mouse-extract

  ;; Get rid of the Edit menu bar item to save space.
  "<menu-bar> <edit>" #'undefined)