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

+6

as of build 2165, console is now white-on-black - how do I get the color theme to apply to it again?

glyph 13 year бұрын updated by Liam Cain 13 year бұрын 1
Every time I open the console or start a build now, my screen flashes bright white.  Why did the most recent beta change this?  How do I get the color theme to apply to the console again?
+6

Provide convenient shortcuts for AZERTY keyboards

محمد أسامة بلعطار 12 year бұрын updated by Emmanuel Joubaud 12 year бұрын 1

USA keybindings are a pain to use in azerty keyboards. User should have the option to switch between the two.

+6

Navigate to the Find Results buffer

Kai Grossjohann 13 year бұрын жаңартылды 13 year бұрын 0
I always have "Use Buffer" turned on when doing Find in Files.  WIBNI there was a simple way to navigate to the "Find Results" buffer?  The "Show results panel" menu item is disabled when "Use Buffer" is turned on -- it could be replaced with a "Show Find Results" menu item that shows the corresponding buffer.

A keybinding for this would also be nice.

Surely beats having to Ctrl+Tab to it.
+6

Don't open new tabs when I disable the tab bar -- open new files in separate windows instead then.

Radomir Dopieralski 12 year бұрын 0
I hate tabs, my preferred mode of using a text editor is to open a separate window for every file I work with, and place it in a different place on the screen -- then I can easily switch between them by remembering where each one of them is. This is much more convenient to me than using a linear list of tabs or a source tree, and seeing only one file at a time.

Sublime Text 2 lets me disable the tab bar, but that only hides it -- the editor still happily opens new files in new tabs, so disabling the tab bar only makes using the editor much harder and has no positive effect. That option would be much more useful if it actually disabled tabs, making all the files open in separate windows -- possibly also making already open tabs pop up in new windows (and merge back as they were when the option is disabled).
+6

Persist the state of open folders in project sidebar

Ned Baldessin 12 year бұрын 0
I'm often working on large Ruby on Rails projects, with maybe 10 open folders in the project sidebar. When I switch from one project to another, and back again, I lose the state in which I left the project: all the folders are closed again. Since the state of files is persisted, I expect the folders in the sidebar to behave the same.

Thanks!
+6

Rename file from command palette

Guillaume Bersac 11 year бұрын жаңартылды 11 year бұрын 1
When I am in editing a buffer, and I seen that its name doesn't fit, I have to type (cmd + k + b) to open the side bar, then tacking the mouse (I hate tacking the mouse), look for the file in my project (I always have many folder in one project) and then right click on it and pick rename. It would be easier to just prompt the command palette and choose the rename option.

Since the functionality has already been implemented, it would be easy to just had it to the command palette.

Thanks.
+6

GB2312 and GBK

赫帅 赖 12 year бұрын 0
Hello, I strongly hope than the sublime text2 could support GBK and GB2312 encoding natively. I swear that the day the sublime text 2 support GB2312 and GBK encoding natively will be the day that me and many of my friends stop our evaluating of sublime text2...
+6

Unindent Shift-Tab Shortcut Broken?

Jeffrey Van Alstine 13 year бұрын updated by Adam Remer 12 year бұрын 6
For some reason my Shift-Tab unindent keyboard hotkey has stopped working.

This is on Ubuntu 10.10, Sublime Text 2 Build 2059

Default Key bindings:
{ "keys": ["shift+tab"], "command": "unindent", "context":
[{ "key": "text", "operator": "regex_contains", "operand": "\n" }]}

I didn't even know there was default (or user) key bindings before it broke, so I'm pretty sure it's not something I did.

CTRL+[ still works fine.
+6

Leading Space in Regex String breaks Perl Syntax coloring (and consequently, global search)

Donald Donovan 12 year бұрын 0
In Perl, when the first character in a regular expression is a literal space, for example
/ carrots/ 
_everything_ following the space is colored as if it were one big string.  If this weren't bad enough, global file search (ctrl+shift+F) ignores anything in perl files that comes after the syntax break.
+6

Javadoc-style popup on hover

Jonathon Freeman 11 year бұрын 0

If this is already available, or already in the works, or available with a 3rd-party plugin please forgive me and let me know where I can find it. I've installed the DocBlockr and SublimeCodeIntel plugins, but those don't seem to provide this functionality.


Anyway... pretty much all "real" IDEs allow you to hover over an identifier in a source file and a hover dialog will popup that shows the parsed/formatted Javadoc-style documentation for that identifier, whether that doc comes from an external source (such as a JAR or a website) or if it's provided inline within the file itself.


I'm mostly interested in being able to hover over a method in PHP that has PHPDoc written inline directly above, and seeing the parsed/formatted documentation for that method.


I understand grabbing the Javadoc/PHPDoc/etc. for 3rd-party code could be a logistical nightmare and wouldn't be very trivial to implement, but I think if the Javadoc/PHPDoc/etc. is already written inline within the file that is currently open it wouldn't be too hard to parse that Javadoc-style comment and produce a hover popup window with formatted documentation. Maybe I'm wrong...


Thanks, and keep up the great work!