Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.
CONSOLE INTERACTION
Odd behaviour of collumn select with keyboard
Javascript syntax highlighting for wrapped functions
Function hints in status bar
It would be great if function hints could pop up in the status bar as you type, like they do in the R console. For example, in R if you start typing "plot(", the bottom of the console displays the function hint "plot(x, y, ...)" so you know what the function arguments are. This might be too specific to R, but I'm sure other languages have something similar. Maybe this could be built into the Enhanced-R plugin?
Add ids to Context.sublime-menu separators
Provide a context manager for View.{begin,end}_edit
Something along the lines of:
class Editor(object): def __init__(self, view, command, args): self.view = view self.command = command self.args = args def __enter__(self): self.edit = self.view.begin_edit(self.command, self.args) return self.edit def __exit__(self, exc_type, exc_val, exc_tb): self.view.end_edit(self.edit)
class View(…): def edit(self, command, args): return Editor(self, command, args)
Would allow one to forget about the problems of pairing begins with ends:
with view.edit(…, …): do_something() do_something_else()
Create project
If you delete all folders from the project and it will be empty, but not saved, then saving will display the last opened folder in the project.
I apologize for my bad English.
Commenting a line without selecting is broken
<li><a href="news.html"> | News</a></li>
<li><a href="news.html"><!-- -->News</a></li>
<!-- <li><a href="news.html">News</a></li> -->
Fast and easy settings framework
It would be great to have a window where to have all the setting and even more a search tool for the settings. When dealing with many settings, it takes you a lot find the specific option, that is why a search box for the settings will be most appreciated.
Settings for default file extension on save
Customer support service by UserEcho