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

+5

ctrl click on hyperlinks to known symbols

fackler hace 13 años actualizado por Francis Gastellu hace 12 años 1
examples.  click on method call takes you to definition.  click on file path opens that file.  etc. 
+5

Autodesk Maya MEL syntax

feh hace 12 años 0
Please do this. Every VFX company in the world would buy licenses, but only if you do it soon. Companies with money don't screw around, downloading sketchy APIs from some dude's blog link and then editing hexadecimals in an xml file to make the software work. No, YOU need to make MEL work, and you need to do it now...


+5

Keep The Size Of Tabs Until The Mouse Is Moved From The Tab Bar

Michael Whitby hace 13 años actualizado por johtso hace 13 años 1
Chrome does this - it's very helpful when mouse middle-clicking to close a lot of tabs, they will all keep their size rather than growing, so you don't inadvertently close the wrong tab because it grew underneath your cursor.
+5

Key Bindings: Modifier Only *Double* Keypress

ar-echo hace 12 años 0

The ability to assing a "modifier only double keypress" as a key binding.


ex:

"keys": ["control+control"] = Typing the control key twice-in-a-row executes the command.


This would be really handy for the Control Palette.

It's a nice way to get another "easy target" keyboard shortcut after all of the "space+___" shortcuts have been taken.


I first saw this feature in Quicksilver and it's very convenient.


Here's some related links and information:

http://geek.michaelgrace.org/2011/02/double-key-press-activation-state-machine-thingy/

http://rawsyntax.com/blog/quicksilver-secure-keyboard-entry-and-single-modified-activaction/

+5

Definable context for mouse bindings

Oktay Acikalin hace 14 años 0
Will it be possible to define the context for mouse bindings like in the key bindings file?
+5

Open from url

Matt Steitle hace 12 años 0

It would be great to have the ability to open a source file via url.

+5

No Windows Aero style for messagebox buttons

Tobias hace 12 años 0
Message box buttons don't have the Windows Aero style.

Just a minor inconvenience but hopefully it's easy to fix.Image 151

+5

Show a code navigator in the sidebar.

adila papaya hace 11 años 0
The minimap is great but a code navigator would really speed things up a lot.
Here's two example images showing what I mean. The code navigators are in the sidebar on the right.
Image 270
and 
Image 271

It's the main reason that I switch to Coda 2 once my code gets beyond a certain size. 
+5

multistring sql

When in PHP code string contanin SQL code highlight don't work when string started with new line. Example:

<?php
$query = "
    SELECT

      *

  FROM
        `table`
";
?>

Worked well:

<?php
$query = "SELECT

      *

  FROM
        `table`
";
?>