+5

Definable context for mouse bindings

Oktay Acikalin 14 lat temu 0
Will it be possible to define the context for mouse bindings like in the key bindings file?
+5

Open from url

Matt Steitle 12 lat temu 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 12 lat temu 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 11 lat temu 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`
";
?>

+5

provide keyboard shortcut to indent out to a flat column, starting from multi-cursor insert along a ragged edge

Matthew Trost 12 lat temu zaktualizowano 12 lat temu 1

Just to start off: I love ST2!


I have one feature suggestion. Someone may have made a plugin for this, but I haven't been able to find it. (Possibly I'm not Googling the right phrase...)


Let's say I've got multi-cursor insert along several lines of different lengths -- i.e., cursors along a ragged edge, like this:


a|

aa|

aaa|

a|


How can I automatically push the whitespace at the end of each line out to a flat column, like so?:


a     |

aa   |

aaa |

a     |


I've asked this as a question on SuperUser , but haven't come across an answer yet. Would be a very useful feature!

+5

RSS for Sublime releases

Michal Plichta 12 lat temu Ostatnio zmodyfikowane przez Joel Thornton 12 lat temu 1
I would like to see RSS feed for dev and official build od S2.
+5

New window does not preserve hide menu option (Windows)

d B. 13 lat temu zaktualizowano 13 lat temu 0
I'm not sure if this is the intended functionality of Sublime Text 2. However, I would appreciate it if the hide menu option was preserved in new windows.
+5

Stagger new windows

Aparajita 13 lat temu 0
When new windows are created (either by super+shift+N or by opening a file from the Finder) they are not staggered, but placed directly on top of previous windows. This creates a situation where you can have many windows are stacked directly on top of each other, which makes it difficult to realize this and impossible to select them via the mouse.
+5

Sell t-shirts

Edward D'Souza 13 lat temu Ostatnio zmodyfikowane przez Mariusz Drozdziel 12 lat temu 1
You should sell Sublime Text t-shirts. I know I'd wear one.
+5

Color preview and picker on hover

Sam Garfield  13 lat temu 0
It would be cool if hovering over a color in a css file gave you a preview of the color, and if there was a little color picker built in. Especially in OS X where you can save your color theme to the bottom of the color picker this would be awesome.
+5

Close empty window when opening a folder

Ben Alpert 13 lat temu zaktualizowano 13 lat temu 0
If I start up ST2 then open a folder, I have two windows: one that was open originally and one for the new folder. It would be nice if the original, empty window closed (and also if I could disable it completely).
+5

Console at bottom of IDE does not seem to support unicode?

Hipposaurus 12 lat temu Ostatnio zmodyfikowane przez Fabio Lamanna 12 lat temu 1
Hello,

I believe this is a new bug. 

When I run my program from the Terminal in python, it runs perfectly.

Whereas, when I run it from sublime text, I get this error:

[... stuff ...]
if amtconf.debug_on: print(s)
UnicodeEncodeError: 'ascii' codec can't encode character u'\u030a' in position 30: ordinal not in range(128)

The error is being caused by the debug statement trying to print a unicode string which contains a directory name including special characters like å and ø.

I've spent 2 hours looking into this and it appears to be an issue where the IO output will not allow unicode strings directly? i.e. I think the console window at the bottom of the IDE should be set to use UTF-8 rather than ascii.  


+5

Option to draw line selection till the end of line

kizu 13 lat temu 0
It'd be great if there would be configurable option to make line selection visually stretch till the end of line, like it's drawn now in TextMate.
+5

sidebar navigation with keboard letters

unodelostrece 12 lat temu 0
Is there a way to navigate in the Sidebar with letter keys to select the files that start with de letter selected? It's a bit anoying when yo have a large list of files to navigate only with the arrow keys....
+5

Coda Pops

aristidesfl 12 lat temu 0
We want the ability to create extensions that provide custom popups like these: http://awardwinningfjords.com/2012/06/05/coda-pops-tech.html 
+5

Saving as a new filename should open file in new tab

ZachDowd 14 lat temu 0
This may be a personal preference, but when I save index.html as about.html it's because I want a new copy of the file, not because that file has now become about.html. When I save it, index.html should stay open a the new file should be open in a new tab and be focused.
+5

Current line highlight hidden for PHP when using Cobalt theme?

Jake Wilson 13 lat temu zaktualizowano 13 lat temu 5
When using the Cobalt theme and editing a PHP file, the current line highlight doesn't show up for any lines of code that are between <?php and ?>.  I can see the current line highlight in the gutter for the line I'm on, but the color does not extend into the code.

If the PHP file has any HTML code integrated with it (that is obviously not between <?php and ?>) then the highlight shows up fine for the HTML.  But once you move the cursor into any PHP code, it goes away.

I'm not sure if this is a bug or if it's just poor organization of the PHP.tmLanguage file or the Cobalt theme file.  When you have PHP and HTML in the same file, all the PHP code has a different background color than the HTML code.  I'm willing to bet that the problem has something to do with this.  I've poked around in the theme files and language files, but I can't figure this one out...
+5

Adjust brightness/saturation of color scheme globally via setting

Joel Thornton 13 lat temu Ostatnio zmodyfikowane przez Indospace-dot io 6 lat temu 3
A few settings to globally adjust the brightness and saturation of the current color scheme (any scheme) would be useful. 

This would allow users to "tune" any color scheme to their tastes without tediously editing RGB color values in the scheme files. Many color themes may have a very pleasing palette, but just be too bright or too washed-out for one's tastes.

I'm thinking something like:
"background_brightness_multiplier": 1.0,"background_saturation_multiplier": 1.0,"foreground_brightness_multiplier": 1.0,"foreground_saturation_multiplier": 1.0