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

+1

different color themes in mulitple windows.

christian Wilmes 11 jaar geleden 0

use case:

- many different projects with similar file structure in many opened windows

- sublime displays project name only in the title bar if no file is opened

- hard to tell which project belongs to which window


idea:

- allow assignement of color theme in the sublime-project file.

- so every project is opened with it's own color theme

- you can see immediatly what's the meaning of this window


+1

Need a phased (or at least blinking) block caret.

Philip Wright 12 jaar geleden 0
I see lots of requests for a block size caret, but I'm going to lose it on the screen if it's not phasing or blinking.
+1

Awesome incremental symbol find

Pau Sanchez 12 jaar geleden 0

The idea is to use something similar to "Go to anything" where you only type some letters that are contained in the symbol you want to go to, and you automatically go to symbols containing those letters in that order, but limiting the search to symbols inside the document (since most languages, if not all, support the same pattern for symbols, and you don't want to search text or anything like that, just references to functions or variables).


Imagine you have a document like this:

void function () {

   doSomething (whatever, "this is a string");

   if (runUltraComplexCheck (var1, var2)) {

      simple_variable = 1;

      doSomethingElse ();

   }

}


Now, the idea is that if you are at the beginning of the document and you run "incremental symbol find" and you press "f" the first word "function" would be selected. If I type "d" then the first "doSomething" would be selected, and so if I run find next, then the "doSomethingElse" symbol would be selected. It should behave as a normal search so find previous and find next would work.


On the other hand, imagine I want to go to "doSomethingElse", then I go to incremental symbol search and type "dse" then automatically doSomethingElse would be selected. In the same scenario, typing "ru" or "rucc" or "run" or "rcheck" would all select "runUltraComplexCheck", which is the only word in that document matching that pattern.


Again, if you type "sv" in incremental symbol search, you would go to "simple_variable".


I think this kind of feature would be as awesome as "Go to Anything", and no other editor has something like this... I guess it can be written using a plugin, but anyway, native would be great.


To sum up the features:

  • incremental symbol find inside current doc
  • a symbol is defined as [_a-zA-Z][_a-zA-Z0-9]+
  • discard searching inside comments
  • discard searching inside text strings
  • be able to use find next / find previous

+1

File Modified status can scroll off tab. Move to left?

highfructose 13 jaar geleden bijgewerkt 13 jaar geleden 1
File Modified status (asterisk/bulletpoint) appears on the right after the file name in the associated tab.  Since file names can scroll off tabs in cases where many tabs exist/file names are long, this results in the modified indicator being hidden from view.


I should always be able to glance at the tab strip and identify which files are modified and which ones are not.  Because of this issue, sometimes it's impossible to tell, which is frustrating.


Even changing to an unknown-status tab doesn't help, because the obscured name doesn't appear.  Mouseover of the tab shows the file location, still no help.  The only way to tell (in Mac OS) is because the icon at the top of the window title bar becomes slightly grey for modified files (I believe this is a systemwide visual effect). There should be a simpler way to know at-a-glance what's modified and what isn't.


(Using Build 2095, Mac OS)

+1

Select tab color for visual grouping

Jarrod Oberto 13 jaar geleden bijgewerkt door Nick Boldt 13 jaar geleden 1
It would be super to nice to be able to right click a tab, select 'color' and then choose one of, say, nine predefined colors from the sub-menu.

This is useful for people like me who often have a lot of files open and want to be able to visually/mentally group files. Even if it's just to mark "currently working on these files".

This is different to other suggestions wanting tab colour by file type or inactivity.

Thanks.
j.
+1
Fixed

Ive had some glitches where i will be typing and the indentation on the line keeps changing from 1 tab space to 2 tab spaces every other character i write.

Zachary Nawar 13 jaar geleden bijgewerkt door Jon Skinner 13 jaar geleden 0
Ive had some glitches where i will be typing and the indentation on the line keeps changing from 1 tab space to 2 tab spaces every other character i write.

It usually happens when ive copied some code in, but sometimes it does it randomly.
Antwoord
Jon Skinner 13 jaar geleden
Fixed in 2076
+1

OS X Zoom Button Behavior

adzenith 14 jaar geleden bijgewerkt 14 jaar geleden 10
In OS X, the Zoom button (the green one) is supposed to make the window as large as it needs to be and no larger. Right now the Zoom button expands the window to be the size of the screen. Could this be changed? That way I could use full-screen mode if I want it to be fullscreen, and I could use Zoom to make the window the right size.
+1

Live Edit

Austin Condiff 11 jaar geleden 0

I'd like to be able to use Sublime Text like my chrome developer tools. You would be able to watch local files and when it is opened in the browser, the css would change it live. Also as you hover over elements in the html on Sublime Text, it would highlight them as if you were hovering over them in the chrome dev tools.


This has already been done in Brackets (an Adobe project), and kind of in an app called CodeKit. It would be great if it were done in a much better editor like Sublime Text.

+1

Vintaje change inner quotes does not work correctly

Juanda Zapata 13 jaar geleden bijgewerkt 13 jaar geleden 0
This one I use the most, when in command mode, you can type <ci"> or <ci'> and vim replaces the inner text from doublequotes or singlequotes in that line. 

Vintage is a step in the right direction but it still feels quirky and buggy.
+1

Syntax highlighting for Haskell unicode syntax

Wladimir van der Laan 12 jaar geleden 0

Support Haskell unicode syntax highlighting (http://www.haskell.org/ghc/docs/7.4.2/html/users_guide/syntax-extns.html ).


I've uploaded the patch here: https://gist.github.com/3744568


This properly highlights the following symbols in their context: ∷,⇒,→