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

+7

Build 3047: Improved file change detection

Alexey Shevchenko hace 11 años actualizado hace 11 años 1

Broken in 3047 build on MacOS X 10.8.4 + Windows 7.


To reproduce, mount (via sshfs) external folder and do some changes externaly (for example via terminal `git pull`).


Expected:

- Saved, not modified in memory, file auto reloads

But:

- Nothing happens



+7

save undo and redo actions

Mohamed Amged hace 11 años 0
save undo and redo actions to the saved and the current session which opens every time I close and open sublime
+7

Access folders in sidebar via API

Oktay Acikalin hace 14 años 0
How can I access the folders in the sidebar from a plugins perspective? I want to get all the paths in order to find files within them with my own algo.
+7

Use project default_encoding for files when opening

Stefan Großmann hace 13 años actualizado por Félix Delval hace 12 años 1
I'm working on a legacy project with all files in ISO-8859-1, so I have set up my project settings file with: 
"fallback_encoding": "Western (ISO 8859-1)",

"default_encoding": "Western (ISO 8859-1)"
This works perfectly for newly created files and for files that contain non-ASCII-characters. But when I open a file with only ASCII characters Sublime Text 2 uses UTF-8 encoding for it. So when I add an Umlaut (äöü) or anything non-ASCII, the file gets saved as UTF-8 instead of the default_encoding which I had set and the characters are displayed wrong in my application.
+7

Syntax highlighting for Processing language

Виктор hace 11 años 0

Syntax highlighting for Processing language (http://processing.org).

File extension: ".pde"


+7

Bug with Find/Replace

Brian Ruff hace 13 años actualizado por Brent Lewis hace 8 años 2
Here's a BUG I found with Find/Replace:

1. Open a document, and click on "Find & Replace"

2. Type in your "find" text in the top panel, and "replace" text in the bottom panel. 

3. Click on "Replace" (not "Replace All"). 

4. Get frustrated that it doesn't work and open up another program to complete task.

+7

setting for convert indentation to tabs on save or on load

Pavlos Vinieratos hace 13 años 0
should be a setting
+7

Hexadecimal colors highlight

Cédric Néhémie hace 13 años 0
Add a background color to the 0x and # part of an hexadecimal color value. The background color is extracted from the hexadecimal value itself as a reminder for this color.
Colors in string should be parsed as well.

I looked at the plugin API to find a way to implement it as a plugin but it seems that there's no way to simply affect a custom background color to a region (If i'm right, a region is associated with a scope which provides the colors and scopes are defined as part of syntax definition)
+7

CTRL+delete should delete by subwords not by entire word.

Nithin Reddy hace 14 años 0
On OS X, CTRL+right and CTRL+left navigate by subword, but CTRL+delete doesn't delete by subword.
+7

Highlight trailing whitespace

Felix Yuan hace 14 años actualizado por Oktay Acikalin hace 14 años 3
In some of our older files there's a lot of trailing whitespace. I don't want to turn on trim trailing whitespace because it would nuke our files and cause a lot of merge conflicts, but I also want to avoid writing it.

Turning on drawWhiteSpace to all is kind of overwhelming. Is there a way to highlight only the trailing white space.