Disable taglist's auto resizing window (tmux)
dblume

dblume commited on 2024-04-01 22:45:56
Showing 1 changed files, with 1 additions and 0 deletions.


Neovim in tmux has taglist try to resize the window when opening the
taglist, but it causes bad wrapping. Disable it.
... ...
@@ -191,6 +191,7 @@ nmap <leader>e :call ToggleNetrw()<cr>
191 191
 let Tlist_GainFocus_On_ToggleOpen = 1  " Jump to taglist window on open
192 192
 let Tlist_Exit_OnlyWindow = 1          " if you are the last, kill yourself
193 193
 let Tlist_Close_On_Select = 1          " Close taglist window on select
194
+let Tlist_Inc_Winwidth = 0             " Only needed for neovim in tmux
194 195
 nmap <leader>l :TlistToggle<cr>
195 196
 
196 197
 " install vim-bbye
197 198