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 13 aastat tagasi 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 14 aastat tagasi uuendaja Oktay Acikalin 14 aastat tagasi 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 11 aastat tagasi 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 . 12 aastat tagasi uuendaja Sean Swezey 12 aastat tagasi 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 12 aastat tagasi 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 14 aastat tagasi uuendaja James Brooks 13 aastat tagasi 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 9 aastat tagasi uuendaja Cristian Yáñez 8 aastat tagasi 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 13 aastat tagasi uuendaja Алексей Марчук 11 aastat tagasi 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 12 aastat tagasi 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 12 aastat tagasi 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.