Variable: treemacs-copy-map

treemacs-copy-map is a variable defined in treemacs-mode.el.

Value

a  treemacs-copy-absolute-path-at-point
f  treemacs-copy-file
n  treemacs-copy-filename-at-point
p  treemacs-copy-project-path-at-point
r  treemacs-copy-relative-path-at-point
v  treemacs-paste-dir-at-point-to-minibuffer

Documentation

Keymap for copy commands in treemacs-mode.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-mode.el
(defvar treemacs-copy-map
  (let ((map (make-sparse-keymap)))
    (define-key map (kbd "a")        'treemacs-copy-absolute-path-at-point)
    (define-key map (kbd "r")        'treemacs-copy-relative-path-at-point)
    (define-key map (kbd "p")        'treemacs-copy-project-path-at-point)
    (define-key map (kbd "n")        'treemacs-copy-filename-at-point)
    (define-key map (kbd "f")        'treemacs-copy-file)
    (define-key map (kbd "v")        'treemacs-paste-dir-at-point-to-minibuffer)
    map)
  "Keymap for copy commands in `treemacs-mode'.")