Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.

+5

sidebar geany (symbols, class, funtions) https://sites.google.com/site/onearvind/geany_sidebar.jpg

Christian Yánez 12 years ago updated by Ivan Peevski 12 years ago 1
Image 152 sidebar geany funtions, class, funtion navigator.
+5

window.open_file should bring newly focused window forward (os x)

samizdat 12 years ago 0
The python api provides a Window method called open_file which either creates a new tab for a given file path or focuses an existing tab if the file is already open.

This works as advertised when called on the currently active window. However when called on an inactive window it will focus the new view for text input but will not bring the window to the front. As a result your keystrokes are now editing a buffer that may be entirely hidden behind other windows.

It's unclear to me whether this is a mac-specific bug, but maybe there's a missing makeKeyAndOrderFront: call in the objective c code somewhere?
+5

Status bar buttons/menus for selecting tab size and translation of tabs to spaces.

Jakobus Poverato 14 years ago 0
Status bar buttons/menus for selecting tab size and translation of tabs to spaces.

It would be nice to have info about tabs visible at glance, and also to be able to change this settings without going to main menu.
+5

Scope Coloring (not just syntax coloring)

Alexander Gunnarson 11 years ago updated by IQvsEQ 11 years ago 1

Image 241

Scope coloring was first suggested by Douglas Crockford. So far the only plugin for Sublime Text 2 (that I know of) that implements scope coloring has been made solely for JavaScript at https://github.com/mazurov/sublime-levels .


It would be great if this feature could be implemented for all languages, especially Clojure and Scheme (for me).


Difference between scope coloring and syntax highlighting:

http://daniellmb.github.io/JavaScript-Scope-Context-Coloring/example/scope-coloring.html#fullmonad

+4

New "draw_white_space: boundary" option

Snap 6 years ago updated 6 years ago 0

I think it'd be beneficial if there were a new option for draw_white_space that only draws white space on the left most and right most edges of a line so any single white spaces between words or characters in the middle of lines are ignored. Similar to setting editor.RenderWhiteSpace to "boundary" in VS Code. So it'd appear:

def function():
••••if True:
••••••••print("I <3 ST")
••••else:
••••••••print("I'm aware there's trailing white space on this line")••

More often than not, seeing white space helps with indentation, so having any source code being viewed decluttered with potentially unnecessary information while still maintaining its usefulness would be a win-win.

+4

Put an end to tabs vs spaces- allow configuration of leading space width

Ryan Wheale 7 years ago 0

Let's say the width of a monospaced letter is 1em - allow users to configure the leading space width so that we can have the benefits of tabs while pacifying the classless naysayers of space town ;)


leading_space_width: 1.3em     ### or just 1.3

+4

Odd Behavior on Double-Click + Drag Select

Dan Rogers 14 years ago 0

Coming from TextMate, this is an unresolved problem there as well.

If you take the following bit of code...

var valueUnit = parts[3] || ( cssNumber[ p ] ? "" : "px" );

...and start to double-click then drag to select it, Sublime Text 2 gets overzealous when selecting whitespace. If you repeat this process here on the forums (in just about any browser) the behavior is more desirable.

So far, loving ST2 aside from that! 
Thanks.

+4

Tab Context menu commands do not act on clicked tab

colinta 13 years ago updated 13 years ago 0
I'm working on a user-requested feature for FileDiffs.  It would be great to be able to right-click on a tab, and if it isn't the active view, the `Diff with Tab` could know which two files the user wants to diff.

But right now, right-clicking on a tab uses the active view no matter what tab was clicked.  I think this is a bug, maybe it's a feature request, but I think this is more "expected" behavior than "desired" behavior.  The close command, for example, acts on the clicked tab, it is just plugins, apparently, that do not act on the correct file.

I am using OSX, build 2175.
+4

Transparent Overlay Message Box API (in addition to status bar API)

robertcollier4 12 years ago updated by Darin Morrison 12 years ago 1

Explained here: http://www.azarask.in/blog/post/monolog_boxes_and_transparent_message

It’s simply a large and translucent message that’s displayed over the contents of your screen. They fade away when the user takes any action (like typing or moving the mouse). In practice, the message is both noticeable yet unobtrusive. And because the message is transparent, you can see what’s beneath


Example here: http://www.youtube.com/watch?v=XcHjA5uwHM8


Image 229

+4

An on_close event for windows and/or projects.

Xavura 12 years ago updated by Kenny Levinsen 12 years ago 1
Request is in the title.
I would like to make sure some processes are killed when a project window is closed. Right now, I think I can achieve this with a view on_close event and counting the number of views that remain in the window and seeing if there is only one.

Of course, that's just terrible.