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

+1

Any good BASIC syntax highlighting packages out there?

Andrew Murrell 11 років тому 0
Does anybody know if there are any good BASIC syntax highlighting packages for Sublime Text 2? I have found quite a few languages, however, I've come up with nothing. I feel like this should be ... pretty basic.
+1

Package Upgrade exception

Artem Shoobovych 12 років тому 0

I encountered a problem when Sublime does not start if package upgrade failed for some reason. Fixed with this code at PackageSetup.py:


def upgrade(appdir, userdir, pristinedir, datadir, backupdir):

    packages = (glob.glob(appdir + "/*.sublime-package") +

    glob.glob(userdir + "/*.sublime-package"))

    for pkg in packages:

        try:

            upgradePackage(pkg, pristinedir, datadir, backupdir)

        except:

            pass

+1
Виконано

High res app icon

-8167 13 років тому оновлено Jon Skinner 13 років тому 0
Just tried out Sublime Text 2 for the first time today and I love it! I'm so ready to pony out the dough for a license.

One thing though. I'm using it both in OSX and via Parallels in a Windows VM. The application icon looks fine in both, but tabbing between icons in Parallels reveals a pixelated icon.

Maybe include a high res version in the Windows version as well as the OSX version?

Відповідь
Jon Skinner 13 років тому
Sublime Text comes with a high res, 256x256 icon in window, which can be seen via Explorer.

Perhaps what you're seeing is a limitation of Parallels
+1

Show File in Sidebar

Rian Quinn 12 років тому 0

When you startup sublime, you have a bunch of files open. The sidebar however, shows all of the folders collapsed. So everymorning I have to uncollapse the folders. One way to solve this would be to not collapse the folders. Another interesting approach would be to have an option in the right click menu for the file's tab. When you click "Show File in Sidebar" the folders auto uncollapse to show you the file. If the a folder is not in the sidebar for the file, you could add the file's root dir, and uncollapse from there.

+1

Use alt + arrow to move around to where you've been

coyotte508 12 років тому 0

One feature I love from Qt Creator / Eclipse is the fact that it remembers the places you've gone to (file + line) and you can navigate between them by using alt + left / right (back and forth).


For example, you're using a function, you realize you need to edit how the function works so you go to the function's file and edit the code, then you go back to where you where (down to the line) with alt+left. And you can use alt+right to go back to the function's file if you forgot to do something.


It also works within the same file. Though it'd be most powerful combined with the jump to declaration/definition functionnality, without it's still very useful.

+1

Panels disappear when they don't fit in the window

Falcon NL 14 років тому 0
Problem: When the window is not high enough to show a panel, such as the console or the output panel, it disappears and refuses to show until the window is resized to be large enough again.

Expected behavior: When the panel in question would no longer fit, resize it to 50% of the height of the window.

Steps to reproduce: Open console. Resize window until console no longer fits.

Forum topic: http://www.sublimetext.com/forum/viewtopic.php?f=3&t=1543
+1

Add an entry in .theme-settings for currently active view tab

Adam Lemmon 11 років тому оновлений 11 років тому 0

To help differentiate between active views in different groups. Currently the active view tab color is a global setting. You can set the active view tab color to help distinguish it from inactive tabs, but there is no way to easily tell which group is the currently active view. This should have its own setting so as to be customizable.

+1

VXML and CCXML Support

Cameron Yeager 11 років тому 0

I have always loved Sublime Text, and am getting into IVR, and while the regular XML support that is provided in Sublime Text is getting me by for now, it would be nice to have full CC/VXML support, for some of the custom tags that are defined, as well as the getting code highlighting for the javascript inside the XML.

+1

Right click folder in side bar-> search this folder

Jeff Yeo 14 років тому оновлено Oktay Acikalin 14 років тому 4
Like a subset of find in project.
I know there's different ways to do this. But I think this would be really convenient.
+1

Curly brace background color

jeffhatz 13 років тому оновлено Joel Thornton 13 років тому 1
When the caret is inside of a function, the "caret" color is used to underline the opening and closing curly braces. However, this is not terribly easy to see to quickly see the associated braces. It would be nice if the "lineHighlight" color could be used as a background behind the curly brace.