The current autocomplete supports command names, node names and properties.
It does not:
- Support deep path completion, i.e.
foo/bar/ar<tab>
- File path completion (think
session:import / session:export)
- Command option completion.
This is because I cannot retrieve the full line to be completed from the shell, e.g.
$res = readline_info();
var_dump($res['line_buffer']); // ""
It should return the current line. This doesn't even work in the Symfony shell.
The current autocomplete supports command names, node names and properties.
It does not:
foo/bar/ar<tab>session:import/session:export)This is because I cannot retrieve the full line to be completed from the shell, e.g.
It should return the current line. This doesn't even work in the Symfony shell.