Hacker News new | ask | show | jobs
by iopuy 4057 days ago
Hey guys, great tool. Just want to point out it doesn't play well with ack (a better grep) because ack does not prepend a "./" to the file list returned from "ack -l 'foo'". Any way to make it work with the following:

junk/foo/bar.txt

instead of just

./junk/foo/bar.txt

?

2 comments

Hey @iopuy can you file an issue on github? For paths that are not absolute or relative (and thus ambiguous), we:

-- Try to detect the top-level version control directory -- Use that if one is found

But we could possibly pipe the current working directory into the python context from bash and go from there

Please, this!