Sublime Text 2 only has an additional side bar window, but it's inconvenient with bigger file, such as reStructuredText file with lots of contents.
So is there a plugin to show file structure in Sublime Text (haven't Google out so far), or it is possible to create a plugin to show the file structure?
Thanks!

有帮助吗?

解决方案

There is no such plugin as far as I know.

For your code files you can see the structure in Go to Symbol menu (CMD+R on OSX) if the files are supported by Sublime Text. SublimeCodeIntel provides "code intel" support for many programming languages.

Example screenshot

Sublime Text did not have a decent .RST structure parser last time I checked few months ago, but I would be really grateful if someone creates such plugin (willing to donate).

You can create syntax colorizer with the base Sublime Text (no Python coding needed), but for language analysis a full fetched plugin is required. I suggest you open another question for how to write such plugins.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top