+7

Bookmark Creation

Damir Handoyo 12 lat temu 0
Clicking on the line number column creates a new bookmark on the document, and is shown in the minimap, and is save-able in the project with a list of searchable bookmarks...
+7

Preferences UI

lutzroeder 13 lat temu zaktualizowano 13 lat temu 0
UI to customize Preferences.
+7

Find in files: keyboard shortcut to open results (alternative to double click)

aristidesfl 12 lat temu 0

Keyboard junkies like me don't like to be forced to pick the mouse to navigate to results

+7

ST doesn't honor OS X smooth scrolling setting

Alexander S. 13 lat temu Ostatnio zmodyfikowane przez Hendrik Mans 13 lat temu 1
ST always smooth-scrolls the editor. In OS X there is a system-wide setting to enable/disable smooth scrolling, which I prefer to keep this off due to the latency involved in scrolling; however, ST does not honor that setting.
+7

Live preview of themes

Polychronis Ypodimatopoulos 13 lat temu zaktualizowano 13 lat temu 2
It would be great if I could choose from a theme list and preview the results live, without the list going away like it does when choosing from the menu.
+7
Naprawione

Very long lines not rendered correctly

kib2 14 lat temu Ostatnio zmodyfikowane przez Jon Skinner 14 lat temu 1
Hi,

I'm under Win7, with Sublime Text 2 editing a JavaScript file.

Some parts of long lines disappears for no apparent reason.
See a little video here:
http://goo.gl/r56Ko

Can someone confirm please ?
Thanks.
Odpowiedź
Jon Skinner 14 lat temu
Should be fixed in build 2020
+7

libpng12 is outdated library.

Oskarae Vulgaris 13 lat temu Ostatnio zmodyfikowane przez Mark Keisler 12 lat temu 2
Neet support new one to run Sublime on Arch linux.
Current version (for 20.12.2011):
$ pacman -Ss libpng
extra/libpng 1.4.8-1 [installed]
    A collection of routines used to create PNG format graphics files
+7

syntax highlighting for new-style {} string formatting in python

glyph 13 lat temu zaktualizowano 13 lat temu 0
%-style (AKA old-style) format codes are highlighted within Python strings in the included Python bundle, but {}-style (AKA new-style, AKA .format() style) format codes are not.  It would be great to highlight those as well.
+7

Add sublime.Window.open_folder(folder_name) to API

Glen Robertson 13 lat temu Ostatnio zmodyfikowane przez Felipe Prenholato 12 lat temu 1
Give the API the ability to open a folder in the current window, similar to sublime.Window.open_file()
Would be useful for some plugins - e.g. the open module plugin so module folders can be opened.
+7

Replace All keyboard shortcut

bits 14 lat temu 0
Previously, Alt-Enter in the replace panel triggered Replace All, but since around version 2020, this has stopped working
+7

The clipboard can differ from the selected text [linux]

Matteo Bertini 14 lat temu Ostatnio zmodyfikowane przez Johnny DvC 13 lat temu 1
Example:

- 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

Denis Sokolov 12 lat temu 0
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

Alexey Shevchenko 11 lat temu zaktualizowano 11 lat temu 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 11 lat temu 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 14 lat temu 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 13 lat temu Ostatnio zmodyfikowane przez Félix Delval 11 lat temu 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

Виктор 11 lat temu 0

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

File extension: ".pde"


+7

Bug with Find/Replace

Brian Ruff 13 lat temu Ostatnio zmodyfikowane przez Brent Lewis 8 lat temu 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 13 lat temu 0
should be a setting
+7

Hexadecimal colors highlight

Cédric Néhémie 13 lat temu 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)