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

+6

Find in files: option to not warn about "Unable to open file".

Mike Cooper 12 years ago 0

I have a project with a lot of broken symlinks that I can't really do anything about, so most of my "find in files" searches have a few dozen garbage lines that I can't really get rid of. It would be great if there was an option to turn these warnings off.

+6

Add indentation event listener to API

Scott Allen Baldwin 13 years ago updated 13 years ago 0
Add an event which fires whenever the auto-indentation rules would be applied. This would allow plugins to override the default auto-indent mechanism and apply language-specific indentation rules. A feature like this could go a long way towards making the editor more Lisp-friendly.
+6

A really great product!

Objective Sheep 13 years ago 0
Thank you for this wonderful text editor. I understand the new version is still young and that a lot of things will be improved in the future but the foundations are astonishingly good. Switched from Textmate and I'm loving it so far. Bought the license to add fuel to its development. Keep up the good work!
+6

line highlighting and spell check

Perry Kibler 12 years ago updated by Keith David Bershatsky 12 years ago 7

On the Mac version, if you have line highlighting and spell check both set to true, the spell check (at least with the Twilight theme) is very flakey. The lines always show up, but the text will go from black to white quite often. 

+6

Jump to matching tag

Cideo 12 years ago 0
"jump to matching bracket" (Ctrl+M) should works with XML/HTML tags


+6

Embed the Sublime editor into other applications as a win32 control

Francis Crick 12 years ago 0
At work a lot of people use Sublime Text 2 as a code and text editor, and we also use custom tools that combine text editing with a variety of other editing controls for various workflows.  It would be great if we could migrate our embedded editor from Scintilla to Sublime Text, then we could have a single framework of extensions that could be used both by our custom tools, and by all our Sublime Text users.
+6

Goto Symbol in Project: display additional context (like Goto Anything)

Harvey Rogers 12 years ago updated 12 years ago 1

When using Goto Symbol in Project in version 3 beta, it would be great to see the filename for the symbols, just like you do when using Goto Anything.


Even better would be a preview of the file as you navigate through the list, again like Goto Anything.


Thanks!

+6

Supporting Ubuntu 11.04 AppMenu

Ali Aliev 14 years ago updated by Laurent Drouet 13 years ago 3
In Ubuntu 11.04 there AppMenu (Like mac os x menu). Will support this function in Ubuntu?
+6

Class browser implemented in the file panel

Christophe Robin 14 years ago updated by Oktay Acikalin 14 years ago 1
A list of methods ordered by name, or by lines
Did a quick mockup of what could be done:
http://picpar.com/Skb

The outline could be configurable by language using plugins with basic regexp rules to find function names and attributes
+6

open_dir always uses Explorer.exe - Use python os.startfile() instead to invoke custom Dir Handlers

robertcollier4 12 years ago 0

Many Windows users have Explorer replacements such as Total Commander, XYPlorer, Directory Opus, xplorer2, etc. These usually replace explorer.exe via changing the Folder handler in the registry at: [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\]


However - even when someone has a custom folder handler setup - SublimeText currently always opens a folder via Explorer.exe and not through an os-specific way. An alternative to fix this that I have tested is to use os.startfile("C:\folderpath"). For example the following will respect the user's custom directory handler:


import sublime, sublime_plugin, os


class OpenContainingDirCommand(sublime_plugin.TextCommand):

    def run(self, edit):

        branch, leaf = os.path.split(self.view.file_name())

        os.startfile(branch)


So please use os.startfile(dirpath) for things such as "Browse Package".