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

Absolute path to workspace with backslash is not working

anhq-nguyen opened this issue · comments

I'm using VSC on windows. When I use \ and .\, the extension only suggest relative files and folders

Can you please share the configurations that you have for the "path-autocomplete.pathMappings" ?

I don't have any configure for anything. I've just tried it out

You should be able to change the location of the absolute path as follows:

To setup the root at disk root

    "path-autocomplete.pathMappings": {
        "$root": "/"
    },

To setup the root as the current workspace:

    "path-autocomplete.pathMappings": {
        "$root": "${workspace}/"
    },

Please close the issue if this works for you.

Thank you, that worked