Skip to content

Fix autocomplete for paths beginning with ./ (ie scripts).

If you tried to autocomplete ./x and there was a directory starting ../x it was used instead of whatever was local. Fixed the glob autocompleter to not double add '.' and '..' which worked but stripped the ./ from the name. That is no good for running scripts in your current dir so added a special case to handle that.

Merge request reports