PackageDev icon indicating copy to clipboard operation
PackageDev copied to clipboard

Tools to ease the creation of snippets, syntax definitions, etc. for Sublime Text.

Results 28 PackageDev issues
Sort by recently updated
recently updated
newest added

Fixes #377 This PR ... 1. completely refactors/rewrites _Property List_ and _TextMate Preferences_ syntax - switch to sublime-syntax v2 - inherit TextMate Preferences from Property List - introduce a common...

There are some settings that can only be set in `Preferences.sublime-settings`, such as `theme` or `overlay_scroll_bars` and similar, that affect the entire application across all windows. These settings should not...

enhancement

For exmaple, this file: https://github.com/sublimehq/Packages/blob/7abb330667572395fd5ce82d724a7c7173219f3b/JSON/Fold.tmPreferences ```xml scope source.json settings indentationFoldingEnabled foldScopes begin punctuation.section.sequence.begin end punctuation.section.sequence.end begin punctuation.section.mapping.begin end punctuation.section.mapping.end ``` ![image](https://user-images.githubusercontent.com/6594915/172056154-bcfa9c7c-577f-4e50-858e-216f2de00e33.png)

defect
enhancement

1. `UI: Customize Theme` 2. ``` { "rules": [ { "class": "text_output_control", "parents": [ {"class": "panel_control output_panel"} ], "color_scheme_tint": null }, ], } ``` ![Screenshot 2022-03-15 at 10 51 42](https://user-images.githubusercontent.com/153197/158351989-4870ad2f-7628-4bb7-9555-d4981b863686.png)

defect

I often see the following error message when closing syntax test files. ![grafik](https://user-images.githubusercontent.com/16542113/159793091-53c5a047-3a57-4733-a568-26947b92bb66.png) Not sure about the detailed circumstances, but it seems related with closing a file after restarting ST...

defect

Since we can extend syntaxes now without having to resort to `with_prototype` and have more precise control over context changes, we should extend the default CSS syntax instead of just...

task

This is about the completion helper when editing sublime-syntax files. There's one completion for "base suffix" that I believe is derived from the base scope (e.g. `text.plain` you get `plain`...

enhancement
for later consideration

![grafik](https://user-images.githubusercontent.com/16542113/120073708-cdc98f00-c099-11eb-883b-26c2894d5a94.png) ``` { "keys": ["alt+b"], "command": "insert_snippet", "args": {"contents": "**${SELECTION/^\\*\\*|^__|\\*\\*$|__$//g}**"}, "context": [ { "key": "selector", "operator": "equal", "operand": "text.html.markdown - markup.bold - markup.bold_italic", "match_all": true }, { "key": "setting.mde.bold_marker_asterisk", "operator":...

defect

Via https://github.com/sublimehq/sublime_text/issues/3154, ST can test for symbol definitions and references. While not as important as completions for scope tests, PD should provide some automation for these. Ideas include: - [...

enhancement