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

+23
Fertiggestellt

Keyboard shortcut to close tag

Matt Powell vor 14 Jahren aktualisiert von Jon Skinner vor 12 Jahren 1
A keyboard shortcut to close the current tag (in HTML/XML mode) would be fantastic. It's one of the things I really miss from TextMate.
Antwort
Jon Skinner vor 13 Jahren
This was added in build 2111
+23

subl with no window open doesn't open the file

Mark Fowler vor 13 Jahren aktualisiert von Tom B vor 11 Jahren 5
Passing a filename to the "subl" command line tool when no Sublime Text 2 window is open causes a new window to open with "Untitled" to appear, but the filename isn't opened. 
+22

Fix Ruby incorrect syntax highlighting of 1.9 hash keywords that use a reserved word.

Tony Mann vor 12 Jahren aktualisiert von Jeremy Taylor vor 11 Jahren 3

This post explains the problem well. Hash tags like "end" and "class" in the new 1.9 Hash literal format are hightlighted incorrectly. The post contains a fix that works perfectly, namely to edits the Ruby language file by moving the block of code at lines 201-208 to line 1570.

+22

Hide horizontal scrollbar when map is displayed

Tomas Sardyha vor 14 Jahren aktualisiert von hced vor 12 Jahren 8
As the map is doing the same thing, it is useless to have the scrollbar there as well.
+22

Printing

Steve Smith vor 11 Jahren 0
Honestly, the only thing holding me back from actually purchasing and making this my top text editor is the lack of printing functionality. The moment this is added get off the free beta. Otherwise, best text editor.
+22

Better indentation support

Leonardo Santagada vor 13 Jahren aktualisiert von Geoff Gerrietts vor 12 Jahren 3
Sublimetext2 should have better indentation support, for example when you want to format your code following PEP8 for python you see a lot of places where sublime indents wrong and you have to manually align. One such places is aligning multiple arguments of a function call each line should start after the last open ( and not at the same indentation level of the previous line)
+22

Do not display contents of image files in editor

kencoxdesign vor 13 Jahren aktualisiert von Donna Klinton vor 11 Jahren 3
Selecting images which are part of the project currently displays the binary data on screen (after an annoying  pause for larger images). Since this data is meaningless to a text editor, images should instead be ignored (display nothing in editor).
+22
Fertiggestellt

Make it possible to save a file I don't have the rights to by letting me enter the admin-password.

Holgerh vor 14 Jahren aktualisiert von Jon Skinner vor 13 Jahren 1
On OS X I have some files I can only read but not write with the currently logged in user. When I try to save the file, the system should give me the opportunity to enter the admin-password and enable me to save the file.
Antwort
Jon Skinner vor 13 Jahren
Added in 2165
+22

Allow view.replace to not add to the undo stack

John Doe vor 12 Jahren 0

The API command view.replace always adds to the undo stack. However, it is useful for certain plugins to do a replace without actually adding to the undo stack. This will primarily be useful for collaborative editing plugins, where usually the other person's changes need to be replicated in your view, but each person keeps a separate undo stack (like in Google Docs).

+22

completions from other files

David Alexander vor 14 Jahren aktualisiert von ibbles vor 13 Jahren 5
It would be nice if ST2 would support completions found in other files. Right now it seems like it only uses words in the current file as potential completions.

Emacs does this out-of-the-box with M-/, and it's one of those features that you become unable to live without.