You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When displaying a diff (in status view), the output is wrong if the line starts with % .
This happens quite lot when editing latex files, whose comments start with %
For example, when adding a line like this :
% Simple Comment in a .tex file
grv displays this as a diff
%!S(MISSING)imple Comment in a .tex file
This seems to be an issue with go:fmt which tries to interpret % as a formatting command.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue. You're correct that it's due to a Sprintf interpreting anything starting with a % as a format specifier. This should now be fixed on master.
When displaying a diff (in status view), the output is wrong if the line starts with
%
.This happens quite lot when editing latex files, whose comments start with
%
For example, when adding a line like this :
grv displays this as a diff
This seems to be an issue with go:fmt which tries to interpret
%
as a formatting command.The text was updated successfully, but these errors were encountered: