rickhowe

Results 21 comments of rickhowe

This plugin uses `g` for `GetDiffCharPair` as a default. If `g` has been defined in your vimrc, this plugin does not overwrite your mapping, but `GetDiffCharPair` will not work. If...

For example, I tried to set this in my vimrc, `nmap g :echo localtime()` diffchar does not overwrite the mapping and `g` correctly echoes the local time. How do you...

The plugin does not overwrite the mappings, such as `g`, if those are defined in your vimrc. Is there any case to overwrite your mappings? Please let me know. By...

> so is it possible to offer a command to toggle this 2 compare ways? g:DiffUnit can be used to change a diff unit like 'Char' and 'Word1'. You can...

Please use `g:DiffModeSync` option and `:TDChar` command, which are deprecated but still available. The following is from Readme document of version 8.6: > This plugin will synchronously show/reset the highlights...

> the hl of 'diffadd' by that looks confused with added lines, perhaps better to keep like native 'difftext', IMO. If DiffText is used instead of DiffAdd, ![01](https://user-images.githubusercontent.com/3096934/108620281-7c907a80-746e-11eb-919e-a51554b0958a.png) will be;...

Thanks. 'Cursor' is not always available. For example, 'default' color scheme clears 'Cursor' in vim 8.2 (not gvim). That is why I need an alternative, like 'VertSplit'. My neovim has...

I just followed MS Word as for a line comparison format. Yes, it is sometimes too long and wrapped around. Do you have any specific idea to make it better?

Which lines are indicated as added/deleted/changed are depending on the diff algorithm which vim is using. My plugin actually follows that. You can try to set different algorithms in the...

You may find some useful option of diff command which would help you and can set it using`diffexpr` option. If you know which range of lines should be compared between...