vorpal
vorpal copied to clipboard
Node's framework for interactive CLIs
  Should t the row appear?
Hi, In bash/zsh, one can `set -o vi` to use vi-like command editing. My question to the maintainer is whether such a feature in vorpal seems possible. If so, I'd...
The docs aren't too clear. Maybe it doesn't exist. I know about multi-word commands, https://github.com/dthree/vorpal/wiki/api-%7C-vorpal.command#multi-word-commands. But what I'm wondering about is something more along the lines of describing commands with...
I couldn't find information about this in the documentation but is there a way to escape single quotes and double quotes in Vorpal? I know I can enclose strings that...
Hi there, When using more "complex" commands, weird stuff happens:  Here is the command: ``` import curl "curl 'https://pokeapi.co/api/v2/pokemon/mew' -H 'accept-encoding: gzip, deflate, br' -H 'referer: https://pokeapi.co/' -H 'authority:...
We need a lodash update. It'd be a good time to release to resolve #301 as well.
.
.
I don't see a way to make help output list available aliases – currently these are only discoverable via reading the source or README I currently copy the help output...
sending a command with a value like : `['//a[@id="pagination"]/a[5]',3]` results in `[\'//a[@ id=\'pagination\' ]/a[5]\',3]` This has been causing a lot of problems, is there a way to turn off this...
I have a command that has multiple required arguments, and I want to make custom autocomplete that is different between the arguments. As far as I can tell there is...