-
I would like to be able to close the task list with the "q" key. Is it possible to set this somehow? Thank you in advance for any help. |
Beta Was this translation helpful? Give feedback.
Answered by
stevearc
Sep 26, 2022
Replies: 1 comment 1 reply
-
Yes, the require("overseer").setup({
task_list = {
bindings = {
q = "<CMD>close<CR>",
},
},
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
yngwi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, the
task_list.bindings
section of the setup options allows you to specify anything that can be passed tovim.keymap.set
. The following should work for you: