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

+1

A way to enter random paths in quick-open

kemayo hace 15 años 0

Possibly: make entering ~ or / as the first character trigger non-project.

+1

Adobe Dreamweaver default color scheme [PHP, CSS]

Md Rashidul Islam hace 14 años actualizado por Amin Khan hace 9 años 2

Adobe dreamweaver default color scheme is best that i've ever seen. Is it possible to get/make a theme like adobe DW? However thanks for this awesome editor

+1

Limit scroll_past_end to keep n lines visible

Joe Maller hace 14 años 0

Many files have a blank newline as their last character, so the `scroll_past_end` setting and a fast scroll result in an empty window. It would be nice if we could specify n lines to keep, something like:


    "scroll_past_end": 10


This would then scroll the window but keep the last 10 lines visible. Switching this to a number would seem to be backwards compatible since the current value `true` would function the same as setting the value to 1.

+1

Change build command based on context of build request

David Baumgold hace 14 años actualizado hace 14 años 0
I have a project with unit tests. I want to use ST2's build feature to run the unit tests, but I want to be able to click on a test in ST2, run the build command with my caret on the test case, and have ST2 run only that test case. (If the caret is not on a test case, then it should run all tests.) I can implement this logic myself, but the build system needs to know where the caret is when the build was requested. Can you pass this information?
+1

Jump To File

Jonah hace 13 años 0

I love the Jump To Definition action.  It would be nice to have the same thing for files.  For example, if you place your cursor within a string in a PHP file that contains a file name/path, it could try to open it.  Same thing in other languages, line Django template files, Ruby require statements, etc.

+1

Clicking on tab to regain focus starts drag

David Saracini hace 14 años 0
If I click on a file tab after working in another window (thus, regaining focus to ST2), it starts a drag operator and the tab will follow the cursor.  This should not start a drag operation.  Only reset the focus to ST2 and whatever tab is clicked on.
+1

Any good BASIC syntax highlighting packages out there?

Andrew Murrell hace 13 años 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 hace 14 años 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
COMPLETADO

High res app icon

-8167 hace 15 años actualizado por Jon Skinner hace 15 años 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?

Respuesta
Jon Skinner hace 15 años
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 hace 13 años 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.