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

+12

Combine "Open File…" and "Open Folder…" into a single menu option.

Mark Haase 13 year бұрын updated by Alex Lopatin 13 year бұрын 1
I'm not sure what the reason is for having two different open options (perhaps a cross-platform issue), but TextMate has a single open option that works for both files and folders. I use the folder option more often so I have rebound my keys to make it more instinctive, but it still does trip me up at times.
+12

Python raw string syntax highlighting breaks with unmatched opening brackets

johtso 13 year бұрын updated by Elijah Rutschman 13 year бұрын 2
Image 51

The same happens with a lone opening round bracket "("
+12
Not a bug

Config files for different architectures

Douglas S. Andrade 13 year бұрын updated by Jon Skinner 13 year бұрын 0
As noticed in this thread:

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=2093

The configuration for platforms do not work when they are in the User folder.

It is possible to make then work in the User folder too ? So i will not need to change configuration every time i change from Linux and OSX.

Thanks for Sublime2, it is great !
Answer
Jon Skinner 13 year бұрын
This is intentional, to ensure that when the user settings are programatically updated, there's only a single file that needs to be considered.

To get the same effect, you can make another package, perhaps named 'ZUser' (so that it still overrides settings in other packages when considered lexicographically), and place platform specific settings in there.

For more information, see http://sublimetext.info/docs/en/customization/settings.html
+12

ruby "explicit parens" matching

Roberto Esposito 13 year бұрын 0
I could not find any way to match ruby "explicit" parens (i.e., do end).
Ideally this should support matching "do end", "def end", "class end", etc., and work exactly as it brace matching works.

+12

Support context in mousemap

Rob Cowie 13 year бұрын updated by Mikhail Goncharov (meta) 8 year бұрын 1
Support for context in mouse bindings in the same way as key bindings. It would open up a world of possibilities. One use case would be to mimic the double click to jump" behaviour in Find in Files results.
+12
Аяқталған

Add Per-project Settings

Scott Bowers 13 year бұрын updated by Jon Skinner 13 year бұрын 2
My current use case is the translate_tabs_to_spaces option.  I work with a lot of projects.  Some of them require spaces, some of them require tabs. It would be nice if there was a way to change (file) preferences on a per-project level. 
Answer
Jon Skinner 13 year бұрын
This has been added in build 2111
+12

non-fuzzy (exact) symbol matching in "goto anything"

glyph 12 year бұрын 0
I have a function called 'on', in a large module full of other functions.  If I type '@on' in 'goto anything', I get a ton of other functions before 'on' because they happen to have an 'o' and an 'n' in their name in that order.
I'd love to be able to sometimes exactly match a symbol by its prefix, instead of randomly choosing among many options.
Maybe there's already a way to do this, in which case I'm sorry I didn't make it a Question rather than an Idea.
+12

Console with Input

Patrick Lindsay 12 year бұрын 0

It would be great to have a real console with an input buffer.  You can already build and run projects in several languages.  It would be great if I could test my C++ (which uses cin) inside Sublime, rather than having to run it from another app.

+12

Language on shebang line not correctly detected

Zoran Simic 13 year бұрын updated by Matt Joiner 12 year бұрын 5
Sublime Text 2 doesn't recognize shebang line such as this one:

#!/usr/bin/env python2.6

Please fix this, this should be recognized as a python file
+12

Native TODO List Panel and Highlighting

Kyle Simpson 13 year бұрын жаңартылды 13 year бұрын 2
Please add an integrated TODO list panel into the UI that can be toggled via the 'View' menu/shortcut - perhaps as a side panel.  I'd like all TODOs to be highlighted in my code comments and automatically collected in this side panel.  Would be nice if it supported input of generalized TODOs as well.

I see others have been downvoted for this request, but the existing python plugins for TODO functionality are absolutely not cutting it.  Must have! Thanks and great product!