1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-20 16:18:34 +02:00

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
```
This commit is contained in:
bretello 2023-01-20 14:31:08 +01:00
parent 8e3c36d200
commit 3b6cf2b92f
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -214,5 +214,9 @@ autocmd FileType fzf set laststatus=0 noshowmode noruler
\| autocmd BufLeave <buffer> set laststatus=2 showmode ruler
" Tagbar
let g:tagbar_left= 1
let g:goyo_width='85%'
let g:goyo_linenr=1