marker
marker copied to clipboard
Pipes and redirection
For composing multiple commands, it'd be useful if one could do something like the following:
curl http://some-url.com/ | grep links<ctrl+space>
... where it would then search for grep links (but not the curl command before it), and then upon completion, result in something like this:
curl http://some-url.com/ | grep -E 'https?:\/\/[^ ]+'
... so, in effect, only autocompleting the command you're currently writing - the same for > redirection.
This doesn't seem currently implemented, unless there's something I'm missing?
Great job otherwise, by the way :)
Thanks for the proposition. Actually, this is one of two updates I'm planning to make(along with updating the shell script, to hide that 'maker get ""' command which shows up in the terminal). I just need to better organize my time :)
This seems to be implemented already!