Andy Lester

Results 231 issues of Andy Lester

I'm using Solr and their update API uses [NDJSON](http://ndjson.org/), or newline-delimited JSON, for its streaming updates. It would help me if Mojo::UserAgent supported it. I'm glad to write code/docs/tests for...

feature request

https://asciidoc.org/

filetype

ack doesn't have a `-n`/`--line-number` like grep does. It needs one. Consider backporting it to ack2. Also figure out what it will be called because `-n` is already in use...

feature

I think we might be able to get rid of `--type-set` option, since it is only used to overwrite a previous definition for a type, and that can be done...

feature

after and end are not working together here as suggested Or to search after Perl's `__DATA__` or `__END__` markers, you would do ack pattern --range-end='^__(END|DATA)__'

bug
docs

If I specify `$ ack foo -` then ack should search standard input. If it finds a file called `-` in the root of the tree, it shouldn't hang waiting...

bug

@dboehmer came up with this at https://github.com/beyondgrep/ack2/issues/28 git config --global alias.ack '! git ls-files --others --cached --exclude-standard | ack -x' git ack foo

docs

Python test files are just standard Python files with .py extensions but with filenames beginning with `test_` or ending with `_test`. I've been using these for weeks in my personal...

filetype

The `--type` (and related `--perl`, `--php`, etc) flag has no effect when the `-x` flag is in use. We should make ack warn about this. Here's the use case: I...