lambdalisue / vim-gina

👣 Asynchronously control git repositories in Neovim/Vim 8
http://www.vim.org/scripts/script.php?script_id=5531
MIT License
688 stars 27 forks source link

Gina blame text not helpful #51

Closed prabirshrestha closed 7 years ago

prabirshrestha commented 7 years ago

This is what I see when typing :Gina blame :. It is almost impossible to figure out what the text is.

image

If I resize the window it shows the diff marker but doesn't do right align.

image

I'm using vim8 on windows.

lambdalisue commented 7 years ago

Thanks. But I could not reproduce the issue.

As I said, this is because the gina-blame buffer has numbers. So I guess some of your setting overwrite the setlocal nonumber in ftplugin/gina-blame.vim.

For workaround, you probably can use the following code to force nonumber

call gina#custom#execute('blame', 'setlocal nonumber')

But it should not be required. So could you make a minimal vimrc to reproduce the issue if you cannot find any code which overrule the ftplugin/gina-blame.vim?

lambdalisue commented 7 years ago

Or did you force number by purpose because you prefer? In that case, I'll think about how can I calculate the collect column length in that case.

prabirshrestha commented 7 years ago

I just have set number in my vimrc. If I comment that it works. Will try to get a repro with mimimal vimrc later today or tomorrow.

lambdalisue commented 7 years ago

So did you figure out the reason?

prabirshrestha commented 7 years ago

I'm closing this since after upgrading vim and all my plugins it seems to work correctly. Don't know what actually fixed the issue.

Sorry for the late response.

lambdalisue commented 7 years ago

Ok isee.