-
Hi, first thanks for this piece of software, just 👌 I never requested the manoeuvre module explicitly Am I missing a configuration somewhere ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I'm not 100% certain I'm understanding everything but let me try to answer. I assume you mean you have non-Neorg related keybinding mapped to If so, then this is likely because the default keybinds include a map to this keybinding, here: As I see things there are two things:
|
Beta Was this translation helpful? Give feedback.
-
Yep this is exactly my issue. neorg.setup {
-- Tell Neorg what modules to load
load = {
...
["core.keybinds"] = {
config = {
hook = function (keybinds)
keybinds.unmap('norg', 'n', '<M-j>')
keybinds.unmap('norg', 'n', '<M-k>')
end,
},
},
...
},
} In my config and it works properly now 👍
|
Beta Was this translation helpful? Give feedback.
I'm not 100% certain I'm understanding everything but let me try to answer.
I assume you mean you have non-Neorg related keybinding mapped to
Alt+j
which does not work within Neorg.Within Neorg it instead raises the error above. Is that correct?
If so, then this is likely because the default keybinds include a map to this keybinding, here:
neorg/lua/neorg/modules/core/keybinds/keybinds.lua
Line 35 in 3533008
As I see things there are two things:
unmap
function