bind key in doomemacs

Table of Contents

(map! :map doom-leader-notes-map
      "r f"      #'hermanhelf-org-roam-multidir-node-find
                )

1. prefix

One caveat when using doom’s leader key bindings is that no matter you use or , the arg you get is always as follows:

no prefix 1
C-u 4
C-u C-u 16
C-u C-u C-u 64

Rather than:

no prefix nil
C-u ’(4)
C-u C-u ’(16)
C-u C-u C-u ’(64)

Backlinks

Author: Linfeng He

Created: 2024-04-03 Wed 20:17