Variable: org-roam-grep-map
org-roam-grep-map is a variable defined in org-roam-mode.el.
Value
org-roam-buffer-refresh
org-roam-grep-visit
- negative-argument
0 digit-argument
1 magit-section-show-level-1
2 magit-section-show-level-2
3 magit-section-show-level-3
4 magit-section-show-level-4
<backtab> magit-section-cycle-global
<left-fringe> <mouse-1> magit-mouse-toggle-section
<left-fringe> <mouse-2> magit-mouse-toggle-section
C-<return> org-roam-buffer-visit-thing
C-<tab> magit-section-cycle
C-c TAB magit-section-cycle
M-1 magit-section-show-level-1-all
M-2 magit-section-show-level-2-all
M-3 magit-section-show-level-3-all
M-4 magit-section-show-level-4-all
M-<tab> magit-section-cycle
M-n magit-section-forward-sibling
M-p magit-section-backward-sibling
RET org-roam-buffer-visit-thing
SPC..~ undefined
TAB magit-section-toggle
^ magit-section-up
n magit-section-forward
p magit-section-backward
q..\x3FFFFF digit-argument
Documentation
Keymap for Org-roam grep result sections.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-mode.el
;;;; Grep
(defvar org-roam-grep-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map org-roam-mode-map)
(define-key map [remap org-roam-buffer-visit-thing] 'org-roam-grep-visit)
map)
"Keymap for Org-roam grep result sections.")