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

+4

Escape key for "Single Selection"

Marcos Garcia vor 13 Jahren aktualisiert vor 13 Jahren 2
After I am done editing a multiple selection (made either by Ctrl+D or by Alt+Shift+Arrows), I want to press the Escape key to go back to Single Selection.

Instead, whenever I press the Escape key, Sublime Text 2 (build 2159, linux 32-bit) is entering the Command Mode before going back to Single Selection (so, I have to hit Esc twice). Also, it stays in Command Mode after going to Single Selection, forcing me to hit a key to exit it.

Searched on Key Bindings, but found nothing about the Command Mode.
+4

Improper indentation breaks code folding

whee vor 14 Jahren aktualisiert von adzenith vor 14 Jahren 1
int foo(void) {

int quux = 2;
// comment, indented one space less than it should be
return quux;
}

will fold to

int foo(void) { [...]

// comment, indented one space less than it should be
return quux;
}
+4

Quick new file

Harrison Beachey vor 13 Jahren aktualisiert vor 13 Jahren 0
A nice feature that I've gotten used to in another editor is the ability to double-click on the tab bar to create a new file.  This would be a fantastic addition to sublime. 
+4

Syntax hightlighting breaks in wrong places when text contains non-ascii characters

Mogens Heller Grabe vor 13 Jahren aktualisiert vor 13 Jahren 0
When text contains non-ASCII characters, like e.g. Danish æ, ø, and å, syntax highlighting seems to wrongfully consider these as ending the current token - example:  Image 88 (haven't checked to see if this is just a problem with XML hightligting though)
+4

Regression in 2181 breaks opening UNC paths

jaraco vor 13 Jahren aktualisiert vor 13 Jahren 0
Originally reported in this thread:

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=5515#p25109

When invoking SublimeText 2 on a UNC path, it fails to interpret the path correctly. This is a regression in 2181.
+4

Column mode for tab separated data

Sergey Kovalev vor 13 Jahren 0

Column mode for tab separated data. 


Example:

1 0.124140.2241 this is text data

2 0 0.12345678912e-002 text

3 1 2.323324-1.32e+2 data


For editing data tables with various record length. I have to set huge tab size. 

It would be very good align text in a staight columns for such files. 

And turn off TAB autocomple. It painfull for digits.

+4

Can't type german umlauts with Alt+u and then u for ü

Robert Bohne vor 14 Jahren aktualisiert von Roel De Coninck vor 9 Jahren 4
Unfortunately I can not enter German umlauts with the Alt + u and then u for ü on MacOSX.
(Use a US-Laytout keyboard with US-Layout OSX Settings)
+4

Title says "uregistered" instead of unregistered.

Shannen Saez vor 13 Jahren aktualisiert von Larz Conwell vor 13 Jahren 1
When using an unregistered Sublime Text Dev build, the title says UREGISTERED instead of UNREGISTERED
+4

quick file/folder searching on the folder tree panel

Duy Nguyen vor 13 Jahren 0
It would be nice to have a feature (like Netbeans does) for searching file/folder by name on the folder tree. The feature could be triggered by clicking on the tree panel and start typing. The tree will then move to one of the matching files/folders.
+4

Column selection should skip wrapped lines

Martin H vor 13 Jahren 0

If a line wraps, when doing Add Next Line, it should not add a cursor into the wrapped "virtual" line.