How do you tell Sublime to index a project (i.e., folder and its subdirectories) outside of your current project? Do you have to add each folder you want indexed to the current project? This is specifically for C++ and Python projects. I am coming from Eclipse where you had the ability to define external paths to index.
How to index files outside of your project
FichteFoll
#2
Yes, Sublime Text only indexes files in your project. You can either add more folders or use a different project for the other locations, depending on your use case.
0 Likes
bbb3000
#3
Will sublime autocomplete from projects that aren’t open? So if I add the external dependencies to a project once and save it, will those headers be available across all my other projects for autocomplete?
0 Likes
FichteFoll
#4
No, you would use a plugin for that, tailored to the language you are using. The LSP plugin, for example, interfaces with external tools to provide auto completions and other things.
0 Likes