Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File path autocomplete in VS Code

Has VS Code an autocomplete function for file paths? For e.g. if I want to write the full path to js: "assets/libs/jquery.min.js" Editors like Brackets.ie does this by default.

like image 426
Runtime Terror Avatar asked Sep 18 '15 18:09

Runtime Terror


1 Answers

Visual code by itself has no Path intellisense, but you can use this plugin.

press f1 and copy this in it: ext install path-intellisense

Its a plug-in made by Christian Kohler, all props to him.

Plus, as Searene mentions in the comments, you may also want to set "path-intellisense.absolutePathToWorkspace": false in User Settings to make the auto-completion of absolute paths work.

like image 122
Luka Zadel Avatar answered Oct 12 '22 09:10

Luka Zadel