Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.
Keine ähnlichen Beiträge gefunden.
+7
The clipboard can differ from the selected text [linux]
Example:
- select <foo():>
- move away
- middle click to paste
Actual Result
<foo()> <- quite random
Expected Result
<foo():>
Build 2046
- select <foo():>
- move away
- middle click to paste
Actual Result
<foo()> <- quite random
Expected Result
<foo():>
Build 2046
+7
word_separators is ignored for match_selection
If i remove a character off word_separators and double-click a string containing that character, Sublime does not show me all other instances of that text.
In PHP I want to remove $ from word_separators.
Previously if I double-click on a variable, the variable without the dollar sign would be selected and all the other uses of the variable are highlighted.
After I removed $ from word_separators, however, although the whole variable is selected, all the other uses of the variables are not highlighted.
+7
Build 3047: Improved file change detection
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
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
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
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
Bug with Find/Replace
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
Hexadecimal colors highlight
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)
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)
Customer support service by UserEcho