-
Yep, it's me again... your mouth breathing window licking mouse using heretic 👍🏻 🤝 When I'm in How can i force interactions with a neotree buffer to always be in |
Beta Was this translation helpful? Give feedback.
Answered by
cseickel
Dec 25, 2022
Replies: 1 comment
-
This will do it: local events = require("neo-tree.events")
require("neo-tree").setup({
event_handlers = {
{
event = events.NEO_TREE_BUFFER_ENTER,
handler = function()
vim.cmd("stopinsert")
end,
},
},
})
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
airtonix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will do it: