Function: treemacs-bulk-file-actions-hydra/treemacs-mark-or-unmark-path-at-point-and-exit
treemacs-bulk-file-actions-hydra/treemacs-mark-or-unmark-path-at-point-and-exit
is an interactive and byte-compiled function defined in
treemacs-file-management.el.
Signature
(treemacs-bulk-file-actions-hydra/treemacs-mark-or-unmark-path-at-point-and-exit)
Documentation
Call the head #treemacs-mark-or-unmark-path-at-point' in the "treemacs-bulk-file-actions-hydra" hydra.
The heads for the associated hydra are:
"m": #treemacs-mark-or-unmark-path-at-point',
"u": #treemacs-reset-marks',
"s": #treemacs-show-marked-files',
"d": #treemacs-delete-marked-files',
"c": #treemacs-copy-marked-files',
"o": #treemacs-move-marked-files',
"q": nil
The body can be accessed via treemacs-bulk-file-actions-hydra/body.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-file-management.el
;; shut down docstring width warnings
(with-no-warnings
(defhydra treemacs-bulk-file-actions-hydra (:exit t :hint nil)
("m" #'treemacs-mark-or-unmark-path-at-point "(un)mark")
("u" #'treemacs-reset-marks "unmark all")
("s" #'treemacs-show-marked-files "show")
("d" #'treemacs-delete-marked-files "delete")
("c" #'treemacs-copy-marked-files "copy")
("o" #'treemacs-move-marked-files "move")
("q" nil "cancel")))