Files
rgs/src
Andrew Gallant a13ac3e3d4 On Windows, always consider stdin to be a tty.
This means that `rg pat < file` won't do the expected thing and search
`fil`. Instead, it will recursively search the current directory for `pat`.
This isn't ideal, but is better than the previous behavior, which was to
wait for stdin when running `rg pat`, given the appearance of hanging
forever. The former is an important use case, but the latter is the
*central* use case of ripgrep, so we should make that work.

`rg` can still be used to search stdin on Windows, it just needs to be
done explicitly. e.g., `rg pat - < file` will search for `pat` in `file`.

Fixes #19
2016-09-25 20:00:29 -04:00
..
2016-09-17 12:54:46 -04:00
2016-09-25 20:00:29 -04:00
2016-09-13 21:11:46 -04:00
2016-09-13 21:11:46 -04:00
2016-09-25 17:16:15 +02:00
2016-09-16 16:13:28 -04:00