Sublime Forum

Feature request for the ST3 API

#1

I am the maker of the SublimeLog plugin (http://www.github.com/yrammos/SublimeLog), a console logger for the editor.

At the moment, the logger captures all user-generated output but not ST-generated output. For example, if we type:

print "Hello"

the console will display:

>>> print "Hello"
Hello

but SublimeLog will only capture:

Hello

Other messages that my plugin misses include “Writing file…” messages.

While such system messages are generally of minor interest to most SublimeLog users, it would be nice to refine the plugin to capture all output without exceptions. At the moment this is impossible, because the plugin simply captures sys.stdout and sys.stderr, while ST dispatches its own “system” output directly to the console, bypassing the pipes.

So, to arrive at my question about the Sublime Text 3 API: Would you consider piping all console output, including “system” output, via sys.stdout and sys.stderr?

Many thanks.

0 Likes

#2

We want Sidebar API

0 Likes

#3

+1 vote here !!

0 Likes

#4

Why not a little bit further? Panel API!

Something like a panel showing the symbols of the current file/project should (a) be writable as a plugin and (b) get ST3 closer to the lightweight IDE dream! :smile:

0 Likes

#5

+1 too for this https://github.com/kemayo/sublime-text-2-git/issues/54

0 Likes