Reputation: 736
I am writing a plugin.
What is the 'right' way to get every folder path in opened project? Should I open and parse project file myself?
What I need is 'folders' section in .*sublime-project
Upvotes: 2
Views: 260
looks like view.window().folders() is what I want
view.window().folders()
Upvotes: 1