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
Delta seems to lose syntax highlighting when running git show $revision:path/to/file.ext on a file that contains a line starting with "#":
Output without pager:
$ git --no-pager show :file.c
int zero(void)
{
return 0;
}
#include "another_file.h"
int main()
{
returnzero();
}
The text was updated successfully, but these errors were encountered:
matheustavares
changed the title
🐛 git show $revision:path/to/file.ext: lose syntax highlighting after lines with #
🐛 git show $revision:path/to/file.ext: lose syntax highlighting after "#" lines
Aug 18, 2022
Hi @matheustavares, this is actually fixed on master by #1127, but I've been a bit slack about making a release. Sorry about that -- if you're able to build from source then great, otherwise I will release soon.
Delta seems to lose syntax highlighting when running
git show $revision:path/to/file.ext
on a file that contains a line starting with "#
":Output without pager:
The text was updated successfully, but these errors were encountered: