KSR-Yasuda
KSR-Yasuda
I misunderstood: that line was not window closing, but going back to the window where it had been, was it? So, it should decriment `curwin` if `s:ManSelect()`-ed (or closing) window...
Fixed. Besides window, closing tab before current tab had the same problem.
Fixed: `g:tabman_side = 'right'` and closing the tabman window itself.
> When I use Vimwiki with different tabs, they seem to show the correct titles, but when I then do `:tab help vimwiki` (for example) and switch back to a...
Changing below fixes to show correct netrw tab name. Probably windows not listed in `all_buffers` makes the problem. ```diff --- a/autoload/airline/extensions/tabline.vim +++ b/autoload/airline/extensions/tabline.vim @@ -215,7 +215,7 @@ if !exists(":def") ||...
Or, changing as below: ```diff --- a/autoload/airline/extensions/tabline/buflist.vim +++ b/autoload/airline/extensions/tabline/buflist.vim @@ -52,7 +52,7 @@ function! airline#extensions#tabline#buflist#list() " Basically branch 535 already does it, but since it relies on " BufAdd autocommand,...
#2169 is the same?
Also, this looks a bug: ```diff --- a/autoload/airline/extensions/tabline.vim +++ b/autoload/airline/extensions/tabline.vim @@ -217,7 +217,7 @@ if !exists(":def") || !airline#util#has_vim9_script() let all_buffers = airline#extensions#tabline#buflist#list() let curbuf = filter(buflist, 'index(all_buffers, v:val) != -1')...
Anyway raised a pull request, though, went bad with the tests... Can anyone fix it?
So, now you support only ASCII punctuations, right? The character [`、` (`U+3001`, Ideographic Comma)][Unicode_IdeographicComma] being in Unicode `Po` category, it's one of 'Unicode punctuation character'. [Unicode_IdeographicComma]: https://www.compart.com/en/unicode/U+3001 Could you support...