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

+23
Ukończony

Keyboard shortcut to close tag

Matt Powell 14 lat temu Ostatnio zmodyfikowane przez Jon Skinner 12 lat temu 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.
Odpowiedź
Jon Skinner 13 lat temu
This was added in build 2111
+23

subl with no window open doesn't open the file

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

Printing

Steve Smith 11 lat temu 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 13 lat temu Ostatnio zmodyfikowane przez Geoff Gerrietts 12 lat temu 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 13 lat temu Ostatnio zmodyfikowane przez Donna Klinton 11 lat temu 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
Ukończony

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

Holgerh 14 lat temu Ostatnio zmodyfikowane przez Jon Skinner 13 lat temu 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.
Odpowiedź
Jon Skinner 13 lat temu
Added in 2165
+22

Allow view.replace to not add to the undo stack

John Doe 12 lat temu 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 14 lat temu Ostatnio zmodyfikowane przez ibbles 13 lat temu 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.