yhirose / vscode-filtertext

Filter Text extension for VS Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pipe support

zakkhoyt opened this issue · comments

It would be great to have pipe support, and maybe it already does support it but I don't know the proper syntax.

On command line I can do something like this:
grep 'curl' text.txt | sed 's/.*https/https/'

In VSCode I can get grep to work by dropping the file argument:
grep 'curl'

however I can't seem to get any output once I pipe it into sed.
grep 'curl' | sed 's/.*https/https/'

@zakkhoyt, it's a very good idea that I could also benefit from. I'll work on it when I have time soon.

@zakkhoyt, the new version comes with the pipe support.

Awesome. In VSCode I see:
v0.0.6 - Pipe support

Thanks for implementing and awesome turn around time.