weggli icon indicating copy to clipboard operation
weggli copied to clipboard

Feature Request: optional line numbers in the output

Open bluec0re opened this issue 4 years ago • 0 comments

Current

main.c:123
void main(int argc, char **argv) {
   char buf[256]
...
   strcpy(buf, argv[0]);
...
}

Wanted

main.c:123
123: void main(int argc, char **argv) {
124:   char buf[256]
...
140:   strcpy(buf, argv[0]);
...
160: }

bluec0re avatar Oct 14 '21 09:10 bluec0re