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

+23
Completat

Keyboard shortcut to close tag

Matt Powell fa 14 anys updated by Jon Skinner fa 12 anys 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.
Answer
Jon Skinner fa 13 anys
This was added in build 2111
+23

subl with no window open doesn't open the file

Mark Fowler fa 13 anys updated by Tom B fa 11 anys 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 fa 12 anys updated by Jeremy Taylor fa 11 anys 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 fa 14 anys updated by hced fa 12 anys 8
As the map is doing the same thing, it is useless to have the scrollbar there as well.
+22

Printing

Steve Smith fa 11 anys 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 fa 13 anys updated by Geoff Gerrietts fa 12 anys 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 fa 13 anys updated by Donna Klinton fa 11 anys 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
Completat

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

Holgerh fa 14 anys updated by Jon Skinner fa 13 anys 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.
Answer
Jon Skinner fa 13 anys
Added in 2165
+22

Allow view.replace to not add to the undo stack

John Doe fa 12 anys 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 fa 14 anys updated by ibbles fa 13 anys 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.