-
Hi, 👋 How to debug why {
"neogitorg/neogit",
event = "VeryLazy",
commit = "38dd297a905ec6869f4c20ea9184a3e514316e3b",
config = function()
local neogit = require("neogit")
neogit.setup(})
end,
},
|
Beta Was this translation helpful? Give feedback.
Answered by
CKolkey
Jan 18, 2024
Replies: 1 comment 3 replies
-
You can see if it works if you bind it to something else - for example, I have commit_editor = {
["<c-d>"] = "Abort",
["<c-c><c-k>"] = false,
},
rebase_editor = {
["<c-d>"] = "Abort",
["<c-c><c-k>"] = false,
}, You'll want to determine if it's the function failing, or the key-mapping failing to invoke the function. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It sounds like something might be "eating"
c-k
. Not much I can do about that. Emacs chords aren't exactly "first class" in vim.