-
I often use |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Hey! Thanks for using the plugin :) What you are looking for is |
Beta Was this translation helpful? Give feedback.
-
@shortcuts I seem to be running into a new issue now. It doesn't seem to skip over to neo-tree |
Beta Was this translation helpful? Give feedback.
-
I'm going to piggyback on this one - any chance I could do the same, but with support for https://github.com/numToStr/Navigator.nvim? Currently, it's impossible to go to a tmux pane on the side with |
Beta Was this translation helpful? Give feedback.
-
fwiw I ended up getting a workaround for this, you can checkout this commit to my config here {
"nvim-neo-tree/neo-tree.nvim",
opts = {
event_handlers = {
{
event = "file_opened",
handler = function()
require("neo-tree.command").execute({ action = "close" })
end,
},
{
event = "neo_tree_buffer_enter",
handler = function(arg)
vim.opt.relativenumber = true
vim.opt.number = true
end,
},
},
-- Add this line here
open_files_do_not_replace_types = { "no-neck-pain" },
},
keys = {
{ "<leader>e", false },
{ "<leader>E", false },
},
}, |
Beta Was this translation helpful? Give feedback.
Hey! Thanks for using the plugin :)
What you are looking for is
autocmds.skipEnteringNoNeckPainBuffer
, take a look at https://github.com/shortcuts/no-neck-pain.nvim?tab=readme-ov-file#-configuration for more details :D