Jeff Kaufman
Jeff Kaufman
That's fair. Lets figure this out after the current game ends if we have enough people who want to play again (since we're down to three now)
Hmm, it looks right to me? Can you give an example of how you think it should look? ``` $ ./icdiff --line-numbers tests/input-{4,5}.txt tests/input-4.txt tests/input-5.txt 1 #input, #button { 1...
Right now the filename is left-aligned while the line numbers are right-aligned. So right now we have: ``` $ ./icdiff --line-numbers
Instead of `more` can you use `less -R`?
If you or someone else wanted to write a PR for this I'd be happy to review!
This is an issue in python's `difflib`. You can get `diff.py` from https://docs.python.org/3/library/difflib.html and you'll see `python3 diff.py file1.txt file2.txt` hangs (or just is very slow). I think this is...
@mattrussell2 I think that wouldn't solve the problem? Skimming that package. It looks like a re-implementation in C, but still the same algorithm? (It's also missing some parts of difflib...
Thanks for the suggestion! I'd be happy to have something along these lines, though I don't think I will get around to implementing it
Can you just use the difflib api? What sort of program do you have that you want to invoke icdiff via api? (In general, icdiff is trying to be a...
Thinking about this, it's fine with me if someone wants to make a PR to add API support.