From 3b6cf2b92fc796cedc45cf5029b846ae03a7afe2 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 20 Jan 2023 14:31:08 +0100 Subject: [PATCH] vim: tagbar: workaround for mouse-click issue the world ends at column 223. https://stackoverflow.com/questions/7000960/in-vim-why-doesnt-my-mouse-work-past-the-220th-column Note that (at least on alacritty) the ttymouse=sgr workaround does not work: ```vim if has('mouse_sgr') " fixes unclickable panes after a specific column (~220?) set ttymouse=sgr else set ttymouse=xterm2 end ``` --- vim/plugins_config.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 65c41ec..f5c0a97 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -214,5 +214,9 @@ autocmd FileType fzf set laststatus=0 noshowmode noruler \| autocmd BufLeave set laststatus=2 showmode ruler +" Tagbar +let g:tagbar_left= 1 + + let g:goyo_width='85%' let g:goyo_linenr=1