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

+32

open/save files from a ssh connection

michele franzin 12 years ago 0
It would be handly to open & save file from/to a remote folder, using a ssh connection... i.e. doing remote editing.
+32

Syntax highlighting of heredoc in Ruby

Benjamin Quorning 12 years ago updated by Nieralyte 11 years ago 7
The syntax highlighting of heredocs in Ruby are missing (at least) three things:

* Interpolation is not highlighted:
<<-FOO
<p>#{can_haz_highlight_please?}</p>
FOO

* Heredoc starting without a dash is not recognized:
<<FOO
Not highlighted
FOO

* Heredocs as a method parameter mess up the closing parenthesis:
Hash.new(<<-FOO)
I don't want to write the regex for this one…
FOO

There is some documentation on heredocs here: http://blog.jayfields.com/2006/12/ruby-multiline-strings-here-doc-or.html
+31

Opacity background on mac osx

Anas Mounsif 7 years ago 0

How i can get a background transparency on on Sublime Text, like windows?

+31

Scroll minimap on mouse-over

chaiguy 13 years ago updated by 11 years ago 5
Currently the minimap is static until you click on it, and the view jumps to the proportional location of the mouse. This is fine for smallish documents, but for very long docs (e.g. 2000 lines), clicking a visual representation in the minimap can end up scrolling somewhere totally else.

I suggest scrolling the minimap as the mouse moves over it such that where you click is where you will ultimately navigate to. Once you mouse off of it, it should go back to the current normal view.
+31

IME broken under Linux

Andrew Liu 12 years ago updated by Yongdae Hwang 12 years ago 4
IME input (for Chinese, Japanese, Korean) are broken under Linux.  Usually we use Ctrl+Space to switch within input methods, however it doesn't work under ST2.
It is a *SEREOUS* issue.  Please fix it!
+31

Auto Complete searches entire project

Zachary Nawar 12 years ago updated by Joel Thornton 12 years ago 3
Currently auto complete only searches the currently opened file for similar functions. The ability to make it search your entire project would be nice, and have the results be like:
[trying to autocomplete: "Commit"]
server/servercontrol.lua/CommitProperties
server/servercontrol.lua/CommitPlayers
server/serverdebug.lua/CommitDebugInformation
server/server.lua/CommitTime
client/client.lua/CommitData

Which will also show the location of the function or the variable you are looking to autocomplete.
+31

code overview (like outline in eclipse)

Agustin Boleda 12 years ago updated by Roberto Martelloni 8 years ago 1

Provide a code outline like eclipse


Image 188

+31

Generic API for building UI based plugins.

Harald Lapp 13 years ago updated by Hugo Schmitt 11 years ago 6
I would very much appreciate an API to build plugins that need user-interaction and therefore integrate nicely with the Sublime Text 2 UI. Something like "TM Dialog" of TextMate would in my opinion be a great addition for Sublime Text 2.
+31

When renaming an open file from within sublime, switch to editing the file with the new name

Acorn 13 years ago updated by Cédric ARNOULD 12 years ago 3
When you rename a file that's currently open from the sidebar, you currently have to close the tab and reopen the newly named file in order to start editing it.

Would it not make more sense to automatically reopen the file with the new name? Or at least make it an option?
+31

Allow dynamic pane splitting instead/besides of pre made layouts

aristidesfl 12 years ago updated by Hai Mac Duy 12 years ago 9
Instead of having a set of predefined layouts to choose from, a more flexible and fundamentally simple way (from the user's point of view) would be to have actions for horizontal and vertical splitting.

This would simplify the split pane mechanics (from a usability perspective), and facilitate a more spontaneous workflow. 

:)