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

+9

Set unsaved files more visible !!! please!!!

giulio isernia 13 years ago updated by Dirk Heider 12 years ago 1
+9

Add "save all on loss of focus" option

codex 13 years ago updated by Stevan C Wing 13 years ago 9
This is useful when interacting with tools outside of the editor.
+9

Reveal direcotry in Finder

Domi Barton 13 years ago updated by Aaron Kuzemchak 13 years ago 1
Add a "Reveal in Finder" option to the context menu of directories in project sidebar.

The "Reveal in Finder" menu is currently only available for files.
+9
Completed

Ability to bind back and forward mouse / keyboard buttons to switch files.

Chad Hancock 14 years ago updated by Jon Skinner 13 years ago 5
My Lenovo laptop (as well as the keyboard plugged in to my docking station) have keys that bind to front / back in a browser. Similarly, my mouse has 2 buttons that do that as well. On TextPad for windows, you can use those buttons to switch back and forth between files. Would be great to have that in Sublime as well.
Answer
Jon Skinner 14 years ago
Mouse buttons are customizable in build 2046, and buttons 4/5 go to the next/prev file by default.
+9

Code-based markers

chaiguy 13 years ago 0
I'd like to see the ability to add custom markers to the function list (and ultimately the minimap, if my idea of combining the two is accepted) by adding specially-formatted comments to the code itself.

CodeWarrior used to do this way back with "#pragma mark Label", but something like a triple or quadruple slash might work better these days (of course this would vary with programming language).

For example:

//// Low-level Functions
function applyInherit( ... ) {
...
}
+9

Can't open file with Sublime as default in Open With shell

Rob Graham 13 years ago updated by RIJO JOSEPH 8 years ago 6
I had older version installed before without issues, but since I updated to the most recent release, no matter what I do, I cannot get Sublime Text to show up in the Open With window of other programs. I browse for the programs .exe and check "Always use the selected program" but it wont load into the list of other programs. I can no longer associate my php files to Sublime. I've uninstalled and reinstalled Sublime too. Didn't help.

I've even gone through file association window in Control Panel but it just provides the same Open Files display. Sublime.exe WILL NOT load itself into the list. I now have to manually open my php files with sublime until I can get a fix for this.

I know there is an option during install to add a shell option to open with Sublime Text 2 when you right click a file, but this doesn't associate files to Sublime by default. It's very frustrating.
+9

Perl 5.10+ defined-or operator (//) breaks syntax highlighting

Michele Beltrame 13 years ago updated by Italpro - M Beltrame 11 years ago 1
Since version 5.10, Perl features a defined-or operator:


my $confpath = $ENV{CONFIG_PATH} // './lib';
my $confile = $confpath . '/myconf.conf';


which however breaks syntax highlighting, so the second line (and any following) don't get coloured as they do by using the true-or ( || ) operator.


By the way, the defined-or-assign ( //=) operator doesn't break syntax highlighting.


+9

Additional file exclude patterns for binary files

Oktay Acikalin 14 years ago updated by Geert De Deckere 12 years ago 2
Jon, I think you should add some more file patterns for binary files in the default Global.sublime-settings file like:
"*.png", "*.jpg", "*.jpeg", "*.gif", "*.bmp", "*.pxm", "*.psd"
+9

OSX Lion Versions

Raul K 13 years ago updated 13 years ago 0
It would be great to implement the Auto Save and Versions feature introduced by OSX Lion. 
OS X Lion: About Auto Save and Versions


I don't know how difficult it'd be. 

Thanks so much,

Raul K

+9

change completion priority

vivo 12 years ago updated by robertcollier4 11 years ago 1

The priority of completion proposals poses a problem:


According to the documentation https://sublime-text-unofficial-documentation.readthedocs.org/en/latest/extensibility/completions.html

Priority of Sources for Completions

 - Snippets

 - API-injected completions

 - .sublime-completions files

 - Words in buffer


I.e. the words in my current buffer are not even shown if there are many .sublime-completions


I would like change the priority, or have different keyboard shortcuts for different kinds of completions