mihai-vlc / path-autocomplete

Path autocomplete for visual studio code.

Home Page:https://marketplace.visualstudio.com/items?itemName=ionutvmi.path-autocomplete

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

allow autocompleted in the middle of a string

yukulele opened this issue · comments

example:

// package.json
{
    "scripts": {
       "start": "node ./src/index.js",
       "build-css": "scss ./src/styles.scss ./dist/styles.css"
    }
}

Here ./src/index.js, ./src/styles.scss and ./dist/styles.css are not autocompleted because they are not at the start of the string.

Path should be suggested when they start the string or follow a space.