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

+7

CTRL+delete should delete by subwords not by entire word.

Nithin Reddy hace 13 años 0
On OS X, CTRL+right and CTRL+left navigate by subword, but CTRL+delete doesn't delete by subword.
+7

Highlight trailing whitespace

Felix Yuan hace 14 años actualizado por Oktay Acikalin hace 14 años 3
In some of our older files there's a lot of trailing whitespace. I don't want to turn on trim trailing whitespace because it would nuke our files and cause a lot of merge conflicts, but I also want to avoid writing it.

Turning on drawWhiteSpace to all is kind of overwhelming. Is there a way to highlight only the trailing white space.
+7

vertical tabs

Robert Teshinsky hace 11 años 0
Have the tab list of open files be move-able to either side, with tabs in a vertical list.
Image 273
+7

Custom auto-closing

Z . hace 12 años actualizado por Sean Swezey hace 12 años 1
Can we write custom auto-close pairs? Currently it's like
{'[':']', '{':'}', '(':')', '"':'"', "'":"'"}

and maybe some others, and you can either enable everything or disable everything. I like most of them, but when I do clojure work, ' isn't a closeable thing, and it would be really nice to disable just that.

+7

Show current line in mini-map

Jonathan Graham hace 12 años 0

Similar to how Find highlights your search results in the mini-map, it would be great to turn on highlighting of the current line in the mini-map.


Thanks!

+7

What about a spell checker?

Richard Hurt hace 14 años actualizado por James Brooks hace 13 años 6
I am a horrible speller and would like to be able check my documents for spelling errors with a key press. I don't think it would be necessary to build a spell checker into SublimeText2 but I would like to be able to use a platform one (e.g. aspell on Linux, etc.)
+7

Hide folder or files from search but not from sidebar, per project.

Adriano Resende hace 9 años actualizado por Cristian Yáñez hace 8 años 1

I not found for this solution, if exist this feature, what is best way for to hide files or folder from search but not from sidebar, per project (.sublime-project) ?

In Stack Overflow, Jay say:

For Sublime Text 3: To exclude from search and GoTo results, without removing from the sidebar, change the "binary_file_patterns" setting. Matches files AND folders.

I can't figure out how to implement this on a per-project basis :(. Most settings can be moved to a project.sublime-project file. "Project > Save Project As", save it the root of your project, and add "settings": {...} to the json in the generated file. (from source, works as of ST3 build 3095). But does not work with "binary_file_patterns".
More detail: http://stackoverflow.com/a/25904115/868003

+7

Indent for Parenthesis in PHP

Brian Gottier hace 13 años actualizado por Алексей Марчук hace 11 años 3
It is very common for a closing parenthesis in PHP to indent to the same level as the line above it, but Sublime adds another tab. It would be great if Sublime would move the indent to the same level as the first line.
+7

pragma region (c++) support to be able to close and expand regions like we can open and close functions, thanks a lot and great work!

Nawid Haghgoo hace 12 años 0
pragma region (c++) support to be able to close and expand regions like we can open and close functions, thanks a lot and great work!
+7

Add the ability to exclude comments when searching

chaiguy hace 12 años 0

It would be super handy if there was a button added to the search bar called "include comments" that could be disabled to only search non-commented code.


This would be great if you're looking for every instance of a particular identifier, but don't care about commented-out code.