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 vor 13 Jahren aktualisiert von Dirk Heider vor 12 Jahren 1
+9

Add "save all on loss of focus" option

codex vor 13 Jahren aktualisiert von Stevan C Wing vor 13 Jahren 9
This is useful when interacting with tools outside of the editor.
+9

Reveal direcotry in Finder

Domi Barton vor 13 Jahren aktualisiert von Aaron Kuzemchak vor 13 Jahren 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
Fertiggestellt

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

Chad Hancock vor 14 Jahren aktualisiert von Jon Skinner vor 13 Jahren 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.
Antwort
Jon Skinner vor 14 Jahren
Mouse buttons are customizable in build 2046, and buttons 4/5 go to the next/prev file by default.
+9

Code-based markers

chaiguy vor 13 Jahren 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 vor 13 Jahren aktualisiert von RIJO JOSEPH vor 8 Jahren 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 vor 13 Jahren aktualisiert von Italpro - M Beltrame vor 11 Jahren 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 vor 14 Jahren aktualisiert von Geert De Deckere vor 12 Jahren 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 vor 13 Jahren aktualisiert vor 13 Jahren 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 vor 12 Jahren aktualisiert von robertcollier4 vor 11 Jahren 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