Did you check docs and existing issues?
Neovim version (nvim -v)
0.11.3
Operating system/version
macOS 15.6.1
Describe the bug
Calling Fugit2 consistently throws an error in the :init method of the git status view as the branch_width string template resolves to an invalid format: %-100s.
The culprit appears to be this line in the view logic. Removing the %-, which I believe is an attempt at an escaped dash character, fixes the issue and I'm able to open the Git status. I do notice wonky rendering when setting the width, height options though, so I just leave those to the defaults to be able to work with the plugin.
Steps To Reproduce
Call Fugit2 in a Lazy.nvim install of the plugin on latest stable Neovim.
Expected Behavior
Git status view should open
Did you check docs and existing issues?
Neovim version (nvim -v)
0.11.3
Operating system/version
macOS 15.6.1
Describe the bug
Calling
Fugit2consistently throws an error in the:initmethod of the git status view as thebranch_widthstring template resolves to an invalid format:%-100s.The culprit appears to be this line in the view logic. Removing the
%-, which I believe is an attempt at an escaped dash character, fixes the issue and I'm able to open the Git status. I do notice wonky rendering when setting thewidth,heightoptions though, so I just leave those to the defaults to be able to work with the plugin.Steps To Reproduce
Call
Fugit2in a Lazy.nvim install of the plugin on latest stable Neovim.Expected Behavior
Git status view should open