Command to create new note? #954
-
|
I wanted to create a keymap for creating a new note but I can’t figure out what the command is. I know that it is bound to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
idk what the command is either, but there's a remap key function that's part of the keybind core module. -- Want to move one keybind into the other? `remap_key` moves the data of the
-- first keybind to the second keybind, then unbinds the first keybind.
keybinds.remap_key("norg", "n", "<C-Space>", "<Leader>t")The default bind should be keybinds.remap_key("norg", "n", "<localleader>nn", "whatever you want") |
Beta Was this translation helpful? Give feedback.
Wait nevermind. you can just map
:Neorg keybind norg core.dirman.new.note<CR>