If I type `bin/queue stats g` and hit _tab_, I'm expecting it to complete to `bin/queue stats guzzle` but it doesn't. Digging further I found `CompletionContext` is parsing the words as: ``` json [ "bin/queue", "stats", "", "g" ] ``` Changing [CompletionContext.php L215](https://github.com/stecman/symfony-console-completion/blob/master/src/CompletionContext.php#L215) ``` php $cursor >= $this->charIndex ``` to ``` php $cursor > $this->charIndex ``` seems to fix it for me. But I'm not sure about the other implications of this.