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

+1

Provide an icon for creating shortcuts

Scott Bowers il y a 14 ans mis à jour par Jon Skinner il y a 14 ans 1
I don't know how sublime works in Windows or Mac, but in Linux, there isn't a way to create an shortcut with Sublime's Icon on it. I currently have to use a bo-bo icon for sublime's shortcut.
+1

HTML (Rails) should be HTML (Ruby)

Nelson Blaha il y a 12 ans 0

.html.erb file extension is used in non-Rails Ruby frameworks. The format should be referred to as HTML (Ruby)

+1

Parameters on javascript functions lost color inside function

jorgemason il y a 13 ans 0
function ( par1 (color), par2 ) {
   par1 (color white)
}
+1

Release Sublime Text as Free software

Rory Holland il y a 13 ans mis à jour par glyph il y a 13 ans 1
I would pay for a binary of Sublime Text if the sources were distributed for free.
+1

ability to add language syntax bundles in User directory

Vincent Côté-Roy il y a 13 ans mis à jour il y a 13 ans 0
it would be great to have the ability to add language syntax bundles under the User directory, (or perhaps in a separate, optional "User Packages" directory), so that we could maintain our language bundles separately from the default ones. that way one only has to keep track of / update that one folder when moving between machines.
+1

Add `fail` to Ruby special-method syntax

Mads Ohm Larsen il y a 11 ans 0
`fail` is missing from the special-methods array in Ruby.tmLanguage.

This can simply be added to the list, so it is highlighted.
+1

Temp file for new documents

Yandy Ramirez il y a 11 ans 0
Would it be possible/feasible so that every "New Document" saved or not automatically creates a Temp file located in a specified location? This could be configurable through the user preferences. Sometimes I code/write something that don't want/need to save and dedicate a file to. But would like to access it from another PC and continue if I forget to save or put in a "scratch file".
+1

Command line option to open files with SublimeText

Andrew Pennebaker il y a 14 ans mis à jour il y a 14 ans 4
TextMate has a "mate" command line script that could open files, e.g. "mate hello.py" or directories "mate ."
+1

Permit <TAB> character to be used for autocompletion in dialogs

Chris Burgess il y a 13 ans mis à jour il y a 13 ans 1
In ST2's quick panel and palettes, a <TAB> keystroke is interpreted as a literal TAB character.

ST2 offers autocomplete results frequently, and in this context a TAB keystroke means "accept default autocomplete" to many users.

I asked wbond about this (in context of his excellent SFTP plugin browser), and he replied,

"I agree with you that it would make sense if the Sublime quick panel would accept using the tab key to select an item. Unfortunately there isn't any way with the Sublime API to do that. I tried adding a key binding with a context so that it would only affect the quick panel, however I could not get it to fake the enter key when I press tab."


I would be a very happy user if ST2 was to either -


1. Treat TAB as ENTER (=accept selected result) in autocomplete contexts, or

2. Permit plugin authors to override the default behaviour of accepting TAB as text entry.


There might be valid reasons for typing a TAB character in a panel, but I think that would be far less common a use case than using it for autocomplete.

+1

Tabs shortcuts like in browsers: re-open closed, move tab

Vincent Voyer il y a 13 ans mis à jour par Timo Lehto il y a 12 ans 4
We should be able to do like in any browser:

re-open last closed tab : ctrl+shift+t (> 1 level of close)
move tab right-left : ctrl+shift+pageUp/Down