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

+23
COMPLETADO

Keyboard shortcut to close tag

Matt Powell hace 14 años actualizado por Jon Skinner hace 12 años 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.
Respuesta
Jon Skinner hace 13 años
This was added in build 2111
+23

subl with no window open doesn't open the file

Mark Fowler hace 13 años actualizado por Tom B hace 11 años 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 hace 12 años actualizado por Jeremy Taylor hace 11 años 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 hace 14 años actualizado por hced hace 12 años 8
As the map is doing the same thing, it is useless to have the scrollbar there as well.
+22

Printing

Steve Smith hace 11 años 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 hace 13 años actualizado por Geoff Gerrietts hace 12 años 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 hace 13 años actualizado por Donna Klinton hace 11 años 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
COMPLETADO

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

Holgerh hace 14 años actualizado por Jon Skinner hace 13 años 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.
Respuesta
Jon Skinner hace 13 años
Added in 2165
+22

Allow view.replace to not add to the undo stack

John Doe hace 12 años 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 hace 14 años actualizado por ibbles hace 13 años 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.