Am I Using neoterm_open_in_all_tabs Correctly?
Closed this issue ยท 1 comments
Firstly, thanks for a fabulous plugin. It's made my working life in Vim 100x more enjoyable. ๐
Just wondering if I'm using this config variable incorrectly? From the documentation:
When set, neoterm terminal will open a window on each tab. Set to `0` if you
don't want this behavior.
Default value: `1`.
... it feels like I should be able to set it to 1
, open a handful of tabs, run :Topen
and see the same neoterm window on each tab. What actually happens is that the neoterm window only opens for the current tab. And that's the same behaviour I see when neoterm_open_in_all_tabs
is 0
too. I know I can set an autocmd
to achieve the same behaviour (as you've described before), but I'm also curious as to what this variable actually does. ๐
Thank you again!
it feels like I should be able to set it to 1, open a handful of tabs, run :Topen and see the same neoterm window on each tab.
It's actually the opposite, sorry if it was badly phrased in the documentation, I'll update the docs. Thanks for bringing that to my attention.
Yeah, if you want the same neoterm in all tabs, opening automagically, stick with the autocmd
. ๐