Sven Taute
Sven Taute
I would really like to do that - when I attempted to update JSDetox to use a newer version of V8 in the past, I ran into various dependency issues....
Unfortunately, dependencies are quite an issues due to required versions of some libraries. You could try to use JSDetox with a ruby 2.1 setup instead of 2.3, but I am...
Thanks for your report! I think this is a great idea and it seems there are some use cases for this kind of functionality. I will include something like that...
There is currently no option for this specific use case. You could use "head" as a workaround if you are on Linux: ```sift --limit 1 pattern | head -n1```
Thank you for your report. sift does not really block - the search just runs insanely slow, as every character in the file generates a match and those matches are...
Thanks for opening this issue - these options definitely need some work and I will look into this for an upcoming version.
Thanks for the suggestion - I had the same problem in the past and will look into it. I am currently thinking about an option like ```--output-context``` that would be...
Thanks for you report - I guess this was not reproducible? I will try to look into it, but I am not sure whether I will find something to fix...
sift deactivates grouping and colored output when it writes to a pipe. This ensures that sift works as expected when used in scripts, even if a sift config file enables...
This is an interesting use case. You could solve this with a small local sift config (`.sift.conf`) in that directory, e.g.: ``` js { "ExcludeFiles": [ "*.cpp", "*.pl" ] }...