+9

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

giulio isernia il y a 13 ans mis à jour par Dirk Heider il y a 13 ans 1
+9

Add "save all on loss of focus" option

codex il y a 13 ans mis à jour par Stevan C Wing il y a 13 ans 9
This is useful when interacting with tools outside of the editor.
+9

Reveal direcotry in Finder

Domi Barton il y a 13 ans mis à jour par Aaron Kuzemchak il y a 13 ans 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
Terminé

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

Chad Hancock il y a 14 ans mis à jour par Jon Skinner il y a 13 ans 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.
Solution
Jon Skinner il y a 14 ans
Mouse buttons are customizable in build 2046, and buttons 4/5 go to the next/prev file by default.
+9

Code-based markers

chaiguy il y a 13 ans 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 il y a 13 ans mis à jour par RIJO JOSEPH il y a 8 ans 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 il y a 13 ans mis à jour par Italpro - M Beltrame il y a 11 ans 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 il y a 14 ans mis à jour par Geert De Deckere il y a 12 ans 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 il y a 13 ans mis à jour il y a 13 ans 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 il y a 12 ans mis à jour par robertcollier4 il y a 11 ans 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

+9

Better support for rails migrations

Anthony Underwood il y a 13 ans 0
Textmate has snippets that allow modification of table columns in migration files - these simultaneously change the up and down actions. Please could this be ported to ST2
+9

Sidebar doesn't update on Mac OSX randomly

Kurtis R G. il y a 13 ans mis à jour par Kristen Grote il y a 11 ans 8
  • OS: Mac OSX 10.6.8
  • Build: Sublime Text 2 2165 (and at least the last two versions)

Expected:
When I delete a file from the sidebar, it should remove itself from the file list.
When I rename a file in the sidebar, it should remove itself from the file list and then add the new file.
When I add a file to the project it should add itself to the file list.

Behavior:
The sidebar doesn't seem to be updating when file events happen (rename, delete, create, move).

Steps Taken To Fix:
  • I've restarted the application.
  • I've deleted the application.
  • I've deleted ALL the file created by the application (including two sneaky ones in ~/Library).
  • I've reinstalled the application.
  • I've restarted my computer.
  • I've looked at the console.

Nothing, nada, zip. No dice!

This has now happened twice. The first time it randomly stopped after deleting all of my project files. Doing that again hasn't fixed it.
+9

sidebar auto resizing

Hilyin il y a 12 ans 0

Could we add an option for the sidebar to auto resize as it needs more width to display full file/folder names?


Thanks!

+9

File history should be persistent like e-TextEditor

Subant05 il y a 13 ans mis à jour il y a 13 ans 0
File history should be persistent even after program closes.  The same way e-TextEditor does it.  When quitting the application or closing a file, a user can open that same file and revert back to various versions that were saved during the files lifetime.
+9

Map F2 key to rename file from tree view

Vojtěch Vondra il y a 13 ans mis à jour par chadscott il y a 6 ans 4
I am not sure about all OSs but usually I am able to rename  a file from a file explorer using F2, could this be mapped to the left pane tree view?
+9

Post-It/StickyNote System

Gabriel Lau il y a 12 ans mis à jour par kudo il y a 11 ans 2
It would be nice if the Sublime Text Editor had a system of "Post-it" for each tab to help us remember what we were doing in projects after a while without using them.
+9

Build cmd has no environment (OSX)

Oktay Acikalin il y a 14 ans mis à jour par Nabil Boukala il y a 12 ans 12
Is it correct that a build script starts with nearly no environment on OSX? I would have assumed that my .profile would have been parsed before executing the cmd.
For now I had to run bash with --login to get it. Is there a better way to do this?
+9

Right-click on dock icon should give the option to open a new window.

David Alan Hjelle il y a 13 ans mis à jour par Rick Jensen il y a 12 ans 1
Many apps, such as Mail and Chrome, allow one to create a new document directly from right-clicking on the Dock icon. This is particularly useful when using Mission Control.

Thanks for a great editor, by the way!
+9

Code completion dropdown goes out of view when you're at the bottom of a page

Kevin O'Connor il y a 13 ans mis à jour par Jake Wilson il y a 13 ans 1

 If you're all the way at the bottom of a document and you hit Ctrl Space to invoke the code completer, the dropdown with all of the selectable values pops up underneath and goes off of the screen, with the preselected item quite often not being visible.  Maybe this should pop up above the line in question instead?

+9

box-sizing Tag for css is not recognized. Fix or help please.

Creating Giant il y a 12 ans 0
Sublime Text 2 does not recognize box-sizing tag.*