├── .gitattributes ├── .gitignore ├── .editorconfig ├── .github ├── workflows │ ├── schema.yml │ └── package.yml └── PULL_REQUEST_TEMPLATE.md ├── package_control_channel.sublime-project ├── repository.json ├── readme.md ├── utils └── redirect301.py ├── repository ├── 0-9.json ├── y.json ├── x.json ├── z.json ├── q.json ├── k.json ├── u.json ├── v.json ├── w.json ├── o.json └── i.json └── channel.json /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | *.sublime-workspace 4 | .idea 5 | *.iml 6 | *.log 7 | *.mypy_cache 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | indent_size = 4 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.json] 12 | indent_style = tab 13 | 14 | [*.py] 15 | indent_style = space 16 | -------------------------------------------------------------------------------- /.github/workflows/schema.yml: -------------------------------------------------------------------------------- 1 | name: Schema test 2 | 3 | on: 4 | pull_request: 5 | push: 6 | branches: 7 | - master 8 | 9 | jobs: 10 | schema: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v5 14 | - uses: packagecontrol/st-schema-reviewer-action@f0ed8819bd9058dfa9921e4a061a6a1b643339a2 15 | with: 16 | test_repositories: true 17 | -------------------------------------------------------------------------------- /package_control_channel.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": "." 6 | } 7 | ], 8 | "settings": { 9 | "ensure_newline_at_eof_on_save": true, 10 | "translate_tabs_to_spaces": false, 11 | "trim_trailing_white_space_on_save": true 12 | }, 13 | "build_systems": 14 | [ 15 | { 16 | "name": "Run Tests", 17 | "cmd": ["python", "-m", "unittest"], 18 | "file_regex": "^\\s*File \"(.*?)\", line \\d+", 19 | "working_dir": "${project_path:${folder}}", 20 | "selector": "source.json, source.python" 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /repository.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [], 4 | "dependencies": [], 5 | "includes": [ 6 | "./repository/0-9.json", 7 | "./repository/a.json", 8 | "./repository/b.json", 9 | "./repository/c.json", 10 | "./repository/d.json", 11 | "./repository/e.json", 12 | "./repository/f.json", 13 | "./repository/g.json", 14 | "./repository/h.json", 15 | "./repository/i.json", 16 | "./repository/j.json", 17 | "./repository/k.json", 18 | "./repository/l.json", 19 | "./repository/m.json", 20 | "./repository/n.json", 21 | "./repository/o.json", 22 | "./repository/p.json", 23 | "./repository/q.json", 24 | "./repository/r.json", 25 | "./repository/s.json", 26 | "./repository/t.json", 27 | "./repository/u.json", 28 | "./repository/v.json", 29 | "./repository/w.json", 30 | "./repository/x.json", 31 | "./repository/y.json", 32 | "./repository/z.json", 33 | "./repository/dependencies.json" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- 1 | name: Package test 2 | 3 | on: 4 | pull_request: 5 | issue_comment: 6 | types: [created] # run when comment added with "📦" 7 | 8 | env: 9 | GITHUB_TOKEN: ${{ github.token }} 10 | 11 | permissions: 12 | contents: read 13 | pull-requests: write 14 | 15 | jobs: 16 | # run package test on pull request event (but not on drafts) 17 | package: 18 | if: ${{ github.event_name == 'pull_request' && !github.event.pull_request.draft }} 19 | runs-on: ubuntu-latest 20 | steps: 21 | - uses: actions/checkout@v5 22 | with: 23 | fetch-depth: 0 24 | - name: Diff and review changed/added packages 25 | uses: kaste/st_package_reviewer/gh_action@7dd94a9f77ab03d7a7a412ae88132076c66cf5ff 26 | with: 27 | pr: ${{ github.event.pull_request.html_url }} 28 | file: repository.json 29 | 30 | # run package test on demand via comment on the pr 31 | package_comment: 32 | if: ${{ github.event_name == 'issue_comment' && github.event.issue.pull_request != null && contains(github.event.comment.body, '📦') }} 33 | runs-on: ubuntu-latest 34 | steps: 35 | - uses: actions/checkout@v5 36 | with: 37 | fetch-depth: 0 38 | - name: Diff and review changed/added packages 39 | uses: kaste/st_package_reviewer/gh_action@7dd94a9f77ab03d7a7a412ae88132076c66cf5ff 40 | with: 41 | pr: ${{ github.event.issue.pull_request.html_url }} 42 | file: repository.json 43 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Package Control Default Channel 2 | 3 | ## Submitting your package 4 | 5 | - Fork this repository. 6 | - Add the details of your package, in alphabetical order, 7 | to the correct JSON file in the [repository directory][repodir]. 8 | - Check the full [guide to submitting packages][guide] for more information. 9 | - Create a PR and make sure you check [all the boxes][prtemplate]. 10 | 11 | [repodir]: https://github.com/wbond/package_control_channel/tree/master/repository 12 | [guide]: https://docs.sublimetext.io/guide/package-control/submitting.html 13 | [prtemplate]: https://github.com/wbond/package_control_channel/blob/master/.github/PULL_REQUEST_TEMPLATE.md 14 | 15 | 16 | ## About 17 | 18 | The `channel.json`, `repository.json` and `repository/*.json` files 19 | contain lists of repositories and packages for use with 20 | [Package Control](https://packagecontrol.io). 21 | These source files are processed by a crawler 22 | and compiled into a single file: 23 | [channel_v3.json](https://packagecontrol.io/channel_v3.json). 24 | This is the source of all package available for installation via Package Control. 25 | 26 | Libraries (previously named "dependencies") have their own registry at https://github.com/packagecontrol/channel. 27 | 28 | 29 | 30 | ## Other notable repositories 31 | 32 | This is the main repository of Sublime Text packages. However: 33 | 34 | - Linter packages should in most cases be submitted over at [SublimeLinter](https://github.com/SublimeLinter/package_control_channel). 35 | - Similarly, any language server protocol packages are managed via [SublimeLSP](https://github.com/sublimelsp/repository). 36 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | - [ ] I'm the package's author and/or maintainer. 7 | - [ ] I have have read [the docs][1]. 8 | - [ ] I have tagged a release with a [semver][2] version number. 9 | - [ ] My package repo has a description and a README describing what it's for and how to use it. 10 | - [ ] My package doesn't add context menu entries. * 11 | - [ ] My package doesn't add key bindings. ** 12 | - [ ] Any commands are available via the command palette. 13 | - [ ] Preferences and keybindings (if any) are listed in the menu and the command palette, and open in split view. 14 | - [ ] If my package is a syntax it doesn't also add a color scheme. *** 15 | - [ ] I use [.gitattributes][3] to exclude files from the package: images, test files, sublime-project/workspace. 16 | 17 | [1]: https://docs.sublimetext.io/guide/package-control/submitting.html 18 | [2]: https://semver.org 19 | [3]: https://www.git-scm.com/docs/gitattributes#_export_ignore 20 | 21 | My package is ... 22 | 23 | There are no packages like it in Package Control. 24 | 25 | My package is similar to ... However it should still be added because ... 26 | 27 | 38 | -------------------------------------------------------------------------------- /utils/redirect301.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | """ 4 | This script can be used to detect redirects in package detail URLs. 5 | A redirect typically means a package repository has changed hands. 6 | 7 | Note that it requires requests: https://pypi.org/project/requests/ 8 | """ 9 | 10 | import datetime 11 | import json 12 | import logging 13 | from pathlib import Path 14 | from time import sleep 15 | import sys 16 | 17 | import requests 18 | 19 | base_dir = Path(__file__).parent.parent 20 | log_path = base_dir / "redirect301_{:%Y-%M-%d_%H-%m-%S}.log".format(datetime.datetime.now()) 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.setLevel(logging.DEBUG) 24 | 25 | formatter = logging.Formatter("%(message)s") 26 | stream_handler = logging.StreamHandler(sys.stdout) 27 | stream_handler.setLevel(level=logging.DEBUG) 28 | stream_handler.setFormatter(formatter) 29 | logger.addHandler(stream_handler) 30 | 31 | file_handler = logging.FileHandler(log_path) 32 | file_handler.setLevel(level=logging.INFO) 33 | file_handler.setFormatter(formatter) 34 | logger.addHandler(file_handler) 35 | 36 | for path in sorted(Path(base_dir, "repository").glob("*.json")): 37 | if path.name == "dependencies.json": 38 | continue 39 | logger.debug("Processing '{!s}'".format(path)) 40 | 41 | with path.open('r', encoding="utf-8") as f: 42 | packages_text = f.read() 43 | packages = json.loads(packages_text)["packages"] 44 | 45 | for package in packages: 46 | link = package["details"] 47 | try: 48 | r = requests.head(link, allow_redirects=False) 49 | if r.status_code == 301: 50 | new_link = requests.head(link, allow_redirects=True).url 51 | if link == new_link: 52 | logger.warning("Redirected to same URL: {}".format(link)) 53 | else: 54 | logger.info("Found 301: \"{}\" -> \"{}\"".format(link, new_link)) 55 | packages_text = packages_text.replace(link, new_link) 56 | else: 57 | logger.debug("No change for \"{}\"".format(link)) 58 | 59 | except Exception: 60 | logger.exception("Exception on {!r}".format(link)) 61 | 62 | sleep(0.1) 63 | 64 | with path.open('w', encoding="utf-8") as f: 65 | f.write(packages_text) 66 | -------------------------------------------------------------------------------- /repository/0-9.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "0x0", 6 | "details": "https://github.com/axsuul/sublime-0x0", 7 | "labels": ["utilities"], 8 | "releases": [ 9 | { 10 | "sublime_text": "*", 11 | "tags": true 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "10% Too Dull for My Tastes Color Scheme", 17 | "details": "https://github.com/scotch-io/10-percent-too-dull-for-my-tastes", 18 | "labels": ["color scheme"], 19 | "releases": [ 20 | { 21 | "sublime_text": "*", 22 | "tags": true 23 | } 24 | ] 25 | }, 26 | { 27 | "name": "1337 Color Scheme", 28 | "details": "https://github.com/MarkMichos/1337-Scheme", 29 | "labels": ["color scheme"], 30 | "releases": [ 31 | { 32 | "sublime_text": "*", 33 | "tags": true 34 | } 35 | ] 36 | }, 37 | { 38 | "name": "2pdf", 39 | "details": "https://github.com/fraoustin/Sublime2pdf", 40 | "releases": [ 41 | { 42 | "sublime_text": "<3000", 43 | "branch": "master" 44 | } 45 | ] 46 | }, 47 | { 48 | "name": "3024 Color Scheme", 49 | "details": "https://github.com/idleberg/3024.tmTheme", 50 | "labels": ["color scheme"], 51 | "releases": [ 52 | { 53 | "sublime_text": "*", 54 | "branch": "master" 55 | } 56 | ] 57 | }, 58 | { 59 | "name": "3D Tool (Async Burst-Mode)", 60 | "details": "https://github.com/leoheck/sublime-3d-tool/", 61 | "labels": ["3d-tool", "burst-mode", "async"], 62 | "releases": [ 63 | { 64 | "sublime_text": "*", 65 | "tags": true 66 | } 67 | ] 68 | }, 69 | { 70 | "name": "3v4l Uploader", 71 | "details": "https://github.com/onlineth/3v4l_Uploader/", 72 | "labels": ["php", "share", "file", "code", "upload"], 73 | "releases": [ 74 | { 75 | "sublime_text": "*", 76 | "tags": true 77 | } 78 | ] 79 | }, 80 | { 81 | "name": "42 Function Count Lines", 82 | "details": "https://github.com/DoKca42/42_sublime_ft_count_line", 83 | "releases": [ 84 | { 85 | "sublime_text": "*", 86 | "tags": true 87 | } 88 | ] 89 | }, 90 | { 91 | "name": "42 Headers", 92 | "details": "https://github.com/Globidev/Sublime-Text-42-Headers", 93 | "releases": [ 94 | { 95 | "sublime_text": ">=3000", 96 | "tags": true 97 | } 98 | ] 99 | }, 100 | { 101 | "name": "4GL", 102 | "details": "https://github.com/skarcha/SublimeText2-4GL", 103 | "labels": ["language syntax"], 104 | "releases": [ 105 | { 106 | "sublime_text": "*", 107 | "branch": "master" 108 | } 109 | ] 110 | }, 111 | { 112 | "name": "65816", 113 | "details": "https://github.com/ksherlock/65816.tmbundle", 114 | "labels": ["language syntax"], 115 | "releases": [ 116 | { 117 | "sublime_text": ">=3092", 118 | "tags": true 119 | } 120 | ] 121 | } 122 | ] 123 | } 124 | -------------------------------------------------------------------------------- /repository/y.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "Yaf Completions", 6 | "details": "https://github.com/huaxiaolong/Yaf-Completions", 7 | "releases": [ 8 | { 9 | "sublime_text": "*", 10 | "tags": true 11 | } 12 | ] 13 | }, 14 | { 15 | "name": "YAML Nav", 16 | "details": "https://github.com/ddiachkov/sublime-yaml-nav", 17 | "labels": ["language syntax", "yaml"], 18 | "releases": [ 19 | { 20 | "sublime_text": "*", 21 | "tags": true 22 | } 23 | ] 24 | }, 25 | { 26 | "name": "YAMLMacros", 27 | "details": "https://github.com/Thom1729/YAML-Macros", 28 | "labels": ["language syntax", "yaml"], 29 | "releases": [ 30 | { 31 | "sublime_text": "*", 32 | "tags": true 33 | } 34 | ] 35 | }, 36 | { 37 | "name": "YamlToJson", 38 | "details": "https://github.com/dannysummerlin/YamlToJson", 39 | "labels": ["convert", "converter", "yaml", "json"], 40 | "releases": [ 41 | { 42 | "sublime_text": "*", 43 | "tags": true 44 | } 45 | ] 46 | }, 47 | { 48 | "name": "YandexTranslate", 49 | "details": "https://github.com/pafnuty/sublime-yandex-translate", 50 | "labels": ["translate", "yandex"], 51 | "releases": [ 52 | { 53 | "sublime_text": "*", 54 | "branch": "master" 55 | } 56 | ] 57 | }, 58 | { 59 | "name": "YandexWiki", 60 | "details": "https://github.com/anton-rudeshko/sublime-yandex-wiki", 61 | "labels": ["yandex", "wiki", "language syntax", "color scheme"], 62 | "releases": [ 63 | { 64 | "sublime_text": ">=3092", 65 | "tags": true 66 | } 67 | ] 68 | }, 69 | { 70 | "name": "Yang Syntax Highlighting", 71 | "details": "https://github.com/apackeer/sublime-yang-syntax", 72 | "labels": ["language syntax", "yang"], 73 | "releases": [ 74 | { 75 | "sublime_text": "*", 76 | "branch": "master" 77 | } 78 | ] 79 | }, 80 | { 81 | "name": "Yara Rule Syntax", 82 | "details": "https://github.com/nyx0/YaraSyntax", 83 | "labels": ["language syntax", "snippets", "yara"], 84 | "releases": [ 85 | { 86 | "sublime_text": ">=3084", 87 | "tags": true 88 | } 89 | ] 90 | }, 91 | { 92 | "name": "yardgen", 93 | "details": "https://bitbucket.org/fappelman/yardgen", 94 | "releases": [ 95 | { 96 | "sublime_text": "*", 97 | "branch": "master" 98 | } 99 | ] 100 | }, 101 | { 102 | "name": "yardoc", 103 | "details": "https://github.com/revathskumar/sublime-yardoc", 104 | "releases": [ 105 | { 106 | "sublime_text": "*", 107 | "branch": "master" 108 | } 109 | ] 110 | }, 111 | { 112 | "name": "yasi-indenter", 113 | "details": "https://github.com/nkmathew/sublime-yasi", 114 | "labels": ["formatting", "indent", "lisp"], 115 | "releases": [ 116 | { 117 | "sublime_text": "*", 118 | "tags": true 119 | } 120 | ] 121 | }, 122 | { 123 | "name": "YASMJinja2", 124 | "details": "https://github.com/m-messiah/yasm-jinja2", 125 | "labels": ["formatting", "language syntax", "yasm", "jinja2", "yandex"], 126 | "releases": [ 127 | { 128 | "sublime_text": "*", 129 | "tags": true 130 | } 131 | ] 132 | }, 133 | { 134 | "name": "Yate", 135 | "details": "https://github.com/mctep/yate-textmate", 136 | "labels": ["language syntax"], 137 | "releases": [ 138 | { 139 | "sublime_text": "*", 140 | "branch": "master" 141 | } 142 | ] 143 | }, 144 | { 145 | "name": "YcmdCompletion", 146 | "details": "https://github.com/LuckyGeck/YcmdCompletion", 147 | "labels": ["auto-complete", "linting"], 148 | "releases": [ 149 | { 150 | "sublime_text": ">=3000", 151 | "tags": true 152 | } 153 | ] 154 | }, 155 | { 156 | "name": "Yet Another Launcher", 157 | "details": "https://github.com/dahanbn/Yet-Another-Launcher", 158 | "labels": ["utilities", "file open", "productivity"], 159 | "releases": [ 160 | { 161 | "sublime_text": ">=3000", 162 | "tags": true 163 | } 164 | ] 165 | }, 166 | { 167 | "name": "YetAnotherCodeSearch", 168 | "details": "https://github.com/pope/SublimeYetAnotherCodeSearch", 169 | "labels": ["search"], 170 | "releases": [ 171 | { 172 | "sublime_text": ">=3000", 173 | "tags": true 174 | } 175 | ] 176 | }, 177 | { 178 | "name": "Yii Framework 1.1 Snippets", 179 | "details": "https://github.com/david-soyez/sublime-yii-snippets", 180 | "labels": ["snippets"], 181 | "releases": [ 182 | { 183 | "sublime_text": "*", 184 | "branch": "master" 185 | } 186 | ] 187 | }, 188 | { 189 | "name": "Yii2 Auto-complete", 190 | "details": "https://github.com/udokmeci/sublime-yii2-autocomplete", 191 | "labels": ["auto-complete"], 192 | "releases": [ 193 | { 194 | "sublime_text": "*", 195 | "tags": true 196 | } 197 | ] 198 | }, 199 | { 200 | "name": "Yii2 Snippets", 201 | "details": "https://github.com/psy-man/yii2-snippets", 202 | "labels": ["snippets"], 203 | "releases": [ 204 | { 205 | "sublime_text": "*", 206 | "tags": true 207 | } 208 | ] 209 | }, 210 | { 211 | "name": "Yin color scheme", 212 | "details": "https://github.com/zhuoqyin/yin_colorscheme", 213 | "labels": ["color scheme"], 214 | "releases": [ 215 | { 216 | "sublime_text": "*", 217 | "tags": true 218 | } 219 | ] 220 | }, 221 | { 222 | "name": "Yosys", 223 | "details": "https://github.com/YosysHQ/Sublime-Yosys", 224 | "labels": ["language syntax"], 225 | "releases": [ 226 | { 227 | "sublime_text": ">=3092", 228 | "tags": true 229 | } 230 | ] 231 | }, 232 | { 233 | "name": "YouCompleteMe", 234 | "details": "https://github.com/sublime-ycmd/sublime-ycmd", 235 | "labels": ["auto-complete", "linting"], 236 | "releases": [ 237 | { 238 | "sublime_text": ">=3000", 239 | "tags": true 240 | } 241 | ] 242 | }, 243 | { 244 | "name": "ytt", 245 | "details": "https://github.com/Vasfed/sublime_ytt", 246 | "labels": ["language syntax"], 247 | "releases": [ 248 | { 249 | "sublime_text": ">=3092", 250 | "tags": true 251 | } 252 | ] 253 | }, 254 | { 255 | "name": "yUML", 256 | "details": "https://github.com/cluther/sublime-yuml", 257 | "labels": ["language syntax", "preview"], 258 | "releases": [ 259 | { 260 | "sublime_text": "*", 261 | "tags": true 262 | } 263 | ] 264 | } 265 | ] 266 | } 267 | -------------------------------------------------------------------------------- /repository/x.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "X to Y", 6 | "details": "https://github.com/superguigui/xtoy", 7 | "releases": [ 8 | { 9 | "sublime_text": "<3000", 10 | "branch": "master" 11 | } 12 | ] 13 | }, 14 | { 15 | "name": "X10Language", 16 | "details": "https://github.com/ltronky/sublime-x10", 17 | "labels": ["language syntax"], 18 | "releases": [ 19 | { 20 | "sublime_text": "*", 21 | "tags": true 22 | } 23 | ] 24 | }, 25 | { 26 | "name": "x86 and x86_64 Assembly", 27 | "details": "https://github.com/13xforever/x86-assembly-textmate-bundle", 28 | "labels": ["language syntax"], 29 | "releases": [ 30 | { 31 | "sublime_text": "*", 32 | "tags": true 33 | } 34 | ] 35 | }, 36 | { 37 | "name": "XAML", 38 | "details": "https://github.com/maslbl4/sublime-xaml", 39 | "labels": ["language syntax"], 40 | "releases": [ 41 | { 42 | "sublime_text": "*", 43 | "branch": "master" 44 | } 45 | ] 46 | }, 47 | { 48 | "name": "Xcode Colors", 49 | "details": "https://github.com/braver/XcodeColors", 50 | "labels": ["color scheme"], 51 | "releases": [ 52 | { 53 | "sublime_text": ">3174", 54 | "tags": true 55 | } 56 | ] 57 | }, 58 | { 59 | "name": "Xcode Configuration Settings", 60 | "details": "https://github.com/p4t5h3/xcode-build-configuration-language-for-sublime-text", 61 | "labels": ["language syntax"], 62 | "releases": [ 63 | { 64 | "sublime_text": ">4107", 65 | "tags": true 66 | } 67 | ] 68 | }, 69 | { 70 | "name": "XDC", 71 | "details": "https://github.com/LDprg/XDC", 72 | "labels": ["language syntax"], 73 | "releases": [ 74 | { 75 | "sublime_text": ">=3092", 76 | "tags": true 77 | } 78 | ] 79 | }, 80 | { 81 | "name": "Xdebug", 82 | "details": "https://github.com/Kindari/SublimeXdebug", 83 | "releases": [ 84 | { 85 | "sublime_text": "<3000", 86 | "branch": "master" 87 | } 88 | ] 89 | }, 90 | { 91 | "name": "Xdebug Client", 92 | "details": "https://github.com/martomo/SublimeTextXdebug", 93 | "labels": ["php", "xdebug"], 94 | "releases": [ 95 | { 96 | "sublime_text": "*", 97 | "tags": true 98 | } 99 | ] 100 | }, 101 | { 102 | "name": "Xeto", 103 | "details": "https://github.com/mgiannini/sublime-xeto", 104 | "labels": ["language syntax", "xeto"], 105 | "releases": [ 106 | { 107 | "sublime_text": "*", 108 | "tags": true 109 | } 110 | ] 111 | }, 112 | { 113 | "name": "xit!", 114 | "details": "https://github.com/jotaen/xit-sublime", 115 | "labels": ["language syntax"], 116 | "releases": [ 117 | { 118 | "sublime_text": ">=3092", 119 | "tags": true 120 | } 121 | ] 122 | }, 123 | { 124 | "name": "Xkcd", 125 | "details": "https://github.com/EivindArvesen/xkcd", 126 | "releases": [ 127 | { 128 | "sublime_text": ">=3000", 129 | "tags": true 130 | } 131 | ] 132 | }, 133 | { 134 | "name": "XLI Template Converter", 135 | "details": "https://github.com/apex2060/xli-templateize", 136 | "releases": [ 137 | { 138 | "sublime_text": "<3000", 139 | "branch": "master" 140 | } 141 | ] 142 | }, 143 | { 144 | "name": "xmake", 145 | "details": "https://github.com/xmake-io/xmake-sublime", 146 | "labels": ["language syntax"], 147 | "releases": [ 148 | { 149 | "sublime_text": "*", 150 | "tags": true 151 | } 152 | ] 153 | }, 154 | { 155 | "name": "xml-guesser", 156 | "details": "https://github.com/CrypticTemple/sublime-xml-guesser", 157 | "releases": [ 158 | { 159 | "sublime_text": "<3000", 160 | "branch": "master" 161 | } 162 | ] 163 | }, 164 | { 165 | "name": "xml2json", 166 | "details": "https://github.com/vontio/sublime-xml2json", 167 | "releases": [ 168 | { 169 | "sublime_text": "*", 170 | "tags": true 171 | } 172 | ] 173 | }, 174 | { 175 | "name": "XmlDocs", 176 | "details": "https://github.com/irrationalistic/sublime-xmldocs", 177 | "labels": ["documentation", "c-sharp"], 178 | "releases": [ 179 | { 180 | "sublime_text": "*", 181 | "tags": true 182 | } 183 | ] 184 | }, 185 | { 186 | "details": "https://github.com/haloway13/XmlTransformer", 187 | "releases": [ 188 | { 189 | "sublime_text": ">=3000", 190 | "tags": true 191 | } 192 | ] 193 | }, 194 | { 195 | "name": "XMPFilter", 196 | "details": "https://github.com/kassi/sublime-text-2-xmpfilter", 197 | "releases": [ 198 | { 199 | "sublime_text": "*", 200 | "branch": "master" 201 | } 202 | ] 203 | }, 204 | { 205 | "name": "xonsh", 206 | "details": "https://github.com/eugenesvk/sublime-xonsh", 207 | "labels": ["xonsh", "python", "language syntax"], 208 | "releases": [ 209 | { 210 | "sublime_text": "4075 - 4147", 211 | "tags": "4075-4147_" 212 | }, 213 | { 214 | "sublime_text": ">=4148", 215 | "tags": true 216 | } 217 | ] 218 | }, 219 | { 220 | "name": "xpath", 221 | "details": "https://github.com/rosshadden/sublime-xpath", 222 | "labels": ["xml", "xpath", "xquery", "clipboard", "preview"], 223 | "releases": [ 224 | { 225 | "sublime_text": "<3000", 226 | "tags": "st2-" 227 | }, 228 | { 229 | "sublime_text": "<4050", 230 | "tags": "v" 231 | }, 232 | { 233 | "sublime_text": ">=4050", 234 | "tags": "ST4-v" 235 | } 236 | ] 237 | }, 238 | { 239 | "name": "XPX", 240 | "details": "https://github.com/infocosme/sublime_xpx", 241 | "labels": ["language syntax"], 242 | "releases": [ 243 | { 244 | "sublime_text": ">=3092", 245 | "tags": true 246 | } 247 | ] 248 | }, 249 | { 250 | "name": "XQuery", 251 | "details": "https://github.com/PogiNate/XQuery-Sublime", 252 | "labels": ["language syntax"], 253 | "releases": [ 254 | { 255 | "sublime_text": "*", 256 | "branch": "master" 257 | } 258 | ] 259 | }, 260 | { 261 | "name": "XSL", 262 | "details": "https://github.com/SublimeText/XSL", 263 | "labels": ["language syntax", "snippets"], 264 | "previous_names": ["XSLT Snippets"], 265 | "releases": [ 266 | { 267 | "sublime_text": "3083 - 4106", 268 | "tags": "st3-" 269 | }, 270 | { 271 | "sublime_text": "4107 - 4125", 272 | "tags": "4107-" 273 | }, 274 | { 275 | "sublime_text": ">=4126", 276 | "tags": "4126-" 277 | } 278 | ] 279 | }, 280 | { 281 | "name": "XSnippet", 282 | "details": "https://github.com/xsnippet/sublime-xsnippet", 283 | "releases": [ 284 | { 285 | "sublime_text": "<3000", 286 | "branch": "master" 287 | } 288 | ] 289 | }, 290 | { 291 | "name": "XssEncode", 292 | "description": "Converts characters from one encoding to another using a transformation.", 293 | "details": "https://github.com/medicean/SublimeXssEncode", 294 | "releases": [ 295 | { 296 | "sublime_text": "*", 297 | "tags": true 298 | } 299 | ] 300 | }, 301 | { 302 | "name": "Xtemplate", 303 | "details": "https://github.com/noyobo/sublime-xtemplate", 304 | "labels": ["language syntax", "snippets"], 305 | "releases": [ 306 | { 307 | "sublime_text": "*", 308 | "tags": true 309 | } 310 | ] 311 | }, 312 | { 313 | "name": "Xtend", 314 | "details": "https://github.com/staltz/SublimeXtend", 315 | "labels": ["language syntax"], 316 | "releases": [ 317 | { 318 | "sublime_text": "*", 319 | "tags": true 320 | } 321 | ] 322 | }, 323 | { 324 | "name": "XUL and XBL", 325 | "details": "https://github.com/thomcc/sublime-xul-xbl", 326 | "labels": ["language syntax", "gecko"], 327 | "releases": [ 328 | { 329 | "sublime_text": ">=3092", 330 | "tags": true 331 | } 332 | ] 333 | } 334 | ] 335 | } 336 | -------------------------------------------------------------------------------- /repository/z.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "Z", 6 | "details": "https://github.com/externl/sublime-z", 7 | "labels": ["z", "z jump", "directory", "open directory"], 8 | "releases": [ 9 | { 10 | "sublime_text": "*", 11 | "tags": true 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "Z80 Assembly", 17 | "details": "https://github.com/mrcook/Z80Assembly", 18 | "labels": ["language syntax", "z80", "assembly"], 19 | "releases": [ 20 | { 21 | "sublime_text": ">=3092", 22 | "tags": true 23 | } 24 | ] 25 | }, 26 | { 27 | "details": "https://bitbucket.org/abraly/zap-gremlins", 28 | "releases": [ 29 | { 30 | "sublime_text": "<3000", 31 | "branch": "master" 32 | } 33 | ] 34 | }, 35 | { 36 | "name": "Zeal", 37 | "details": "https://github.com/SublimeText/Zeal", 38 | "author": ["vaanwd", "FichteFoll"], 39 | "releases": [ 40 | { 41 | "sublime_text": "<3170", 42 | "tags": "st2-v" 43 | }, 44 | { 45 | "sublime_text": ">=3170", 46 | "tags": true 47 | } 48 | ] 49 | }, 50 | { 51 | "name": "Zeek Language", 52 | "details": "https://github.com/zeek/zeek-sublime", 53 | "labels": ["language syntax"], 54 | "releases": [ 55 | { 56 | "sublime_text": "*", 57 | "tags": true 58 | } 59 | ] 60 | }, 61 | { 62 | "name": "ZeitgeistLogger", 63 | "details": "https://github.com/jolivares/sublime-zeitgeist-logger", 64 | "labels": ["zeitgeist"], 65 | "releases": [ 66 | { 67 | "sublime_text": "*", 68 | "platforms": "linux", 69 | "tags": true 70 | } 71 | ] 72 | }, 73 | { 74 | "name": "Zen Language", 75 | "details": "https://github.com/zenlang/sublime-zen", 76 | "labels": ["language syntax"], 77 | "releases": [ 78 | { 79 | "sublime_text": "*", 80 | "tags": true 81 | } 82 | ] 83 | }, 84 | { 85 | "name": "Zen Tabs", 86 | "details": "https://github.com/travmik/ZenTabs", 87 | "labels": ["utilities", "tab manipulation", "zen"], 88 | "releases": [ 89 | { 90 | "sublime_text": "*", 91 | "tags": true 92 | } 93 | ] 94 | }, 95 | { 96 | "name": "Zen2Han", 97 | "details": "https://github.com/KazIgu/sublime-zen2han", 98 | "labels": ["text manipulation", "japanese"], 99 | "releases": [ 100 | { 101 | "sublime_text": ">2999", 102 | "tags": true 103 | } 104 | ] 105 | }, 106 | { 107 | "name": "Zenoss", 108 | "details": "https://github.com/cluther/SublimeZenoss", 109 | "releases": [ 110 | { 111 | "sublime_text": "*", 112 | "branch": "master" 113 | } 114 | ] 115 | }, 116 | { 117 | "name": "ZenScript", 118 | "details": "https://github.com/way2muchnoise/ZenScript-Highlighter", 119 | "labels": ["completions", "language syntax"], 120 | "releases": [ 121 | { 122 | "sublime_text": "*", 123 | "tags": true 124 | } 125 | ] 126 | }, 127 | { 128 | "name": "Zephir", 129 | "details": "https://github.com/zephir-lang/zephir-sublime", 130 | "author": "The Phalcon Team", 131 | "labels": ["language syntax"], 132 | "releases": [ 133 | { 134 | "sublime_text": "*", 135 | "branch": "master" 136 | } 137 | ] 138 | }, 139 | { 140 | "name": "Zeus", 141 | "details": "https://github.com/zaynali53/Zeus-Theme", 142 | "labels": ["color scheme"], 143 | "releases": [ 144 | { 145 | "sublime_text": "*", 146 | "tags": true 147 | } 148 | ] 149 | }, 150 | { 151 | "name": "Zig Language", 152 | "details": "https://github.com/ziglang/sublime-zig-language", 153 | "labels": ["language syntax", "zig"], 154 | "releases": [ 155 | { 156 | "sublime_text": "*", 157 | "tags": true 158 | } 159 | ] 160 | }, 161 | { 162 | "name": "ZigUnofficial", 163 | "details": "https://github.com/aidenfoxivey/sublime-zig-unofficial", 164 | "labels": ["language syntax", "zig"], 165 | "releases": [ 166 | { 167 | "sublime_text": ">=3092", 168 | "tags": true 169 | } 170 | ] 171 | }, 172 | { 173 | "name": "Zimpl", 174 | "details": "https://github.com/joneshf/sublime-zimpl", 175 | "labels": ["language syntax"], 176 | "releases": [ 177 | { 178 | "sublime_text": "*", 179 | "tags": true 180 | } 181 | ] 182 | }, 183 | { 184 | "name": "ZipContents", 185 | "details": "https://github.com/mawelborn/ZipContents", 186 | "releases": [ 187 | { 188 | "sublime_text": ">=3000", 189 | "tags": true 190 | } 191 | ] 192 | }, 193 | { 194 | "name": "Zissou Color Schemes", 195 | "details": "https://github.com/idleberg/Zissou.tmTheme", 196 | "labels": ["color scheme"], 197 | "releases": [ 198 | { 199 | "sublime_text": "*", 200 | "branch": "master" 201 | } 202 | ] 203 | }, 204 | { 205 | "name": "Zmpl", 206 | "details": "https://github.com/uzyn/zmpl-grammar", 207 | "author": "U-Zyn Chua", 208 | "labels": ["zmpl", "zig", "jetzig", "language syntax", "html", "markdown"], 209 | "releases": [ 210 | { 211 | "sublime_text": ">=3092", 212 | "tags": true 213 | } 214 | ] 215 | }, 216 | { 217 | "name": "zmq", 218 | "details": "https://github.com/reqshark/sublimezmq", 219 | "labels": ["zeromq", "binding", "zmq"], 220 | "releases": [ 221 | { 222 | "sublime_text": "*", 223 | "platforms": ["osx", "linux"], 224 | "branch": "master" 225 | } 226 | ] 227 | }, 228 | { 229 | "name": "Znuny", 230 | "details": "https://github.com/znuny/Znuny-Sublime", 231 | "author": "Znuny GmbH", 232 | "labels": ["snippets", "perl", "znuny"], 233 | "releases": [ 234 | { 235 | "sublime_text": "*", 236 | "tags": true 237 | } 238 | ] 239 | }, 240 | { 241 | "name": "zoneinfo", 242 | "details": "https://github.com/gilmoreorless/sublime-zoneinfo", 243 | "labels": ["language syntax", "tz", "tzdb", "time zone", "olson"], 244 | "releases": [ 245 | { 246 | "sublime_text": "*", 247 | "tags": true 248 | } 249 | ] 250 | }, 251 | { 252 | "name": "ZPL Syntax", 253 | "details": "https://github.com/tonylegrone/sublime-zpl-highlighting", 254 | "labels": ["language syntax"], 255 | "releases": [ 256 | { 257 | "sublime_text": "*", 258 | "tags": true 259 | } 260 | ] 261 | }, 262 | { 263 | "name": "ZScript", 264 | "details": "https://bitbucket.org/sonictk/sublime_zscript", 265 | "description": "ZBrush ZScript syntax highlighter for Sublime Text", 266 | "labels": ["auto-complete", "language syntax", "snippets"], 267 | "author": "Siew Yi Liang", 268 | "releases": [ 269 | { 270 | "sublime_text": "*", 271 | "tags": true 272 | } 273 | ] 274 | }, 275 | { 276 | "name": "ZSH", 277 | "details": "https://github.com/molovo/sublime-zsh", 278 | "description": "Native ZSH autocompletion and snippets for sublime text", 279 | "labels": ["auto-complete", "snippets"], 280 | "author": "James Dinsdale", 281 | "releases": [ 282 | { 283 | "sublime_text": "*", 284 | "tags": true 285 | } 286 | ] 287 | }, 288 | { 289 | "name": "Zukan Icon Theme", 290 | "details": "https://github.com/53v3n3d4/Zukan-Icon-Theme", 291 | "labels": ["theme", "file", "icons"], 292 | "releases": [ 293 | { 294 | "sublime_text": ">=4075", 295 | "tags": true 296 | } 297 | ] 298 | }, 299 | { 300 | "name": "Zurb Foundation", 301 | "details": "https://github.com/ronydebnath/Sublime-Foundation", 302 | "labels": ["automation", "utilities"], 303 | "releases": [ 304 | { 305 | "sublime_text": "*", 306 | "tags": true 307 | } 308 | ] 309 | }, 310 | { 311 | "name": "Zurb Foundation 4 Snippets", 312 | "details": "https://github.com/liamr/Zurb-Foundation-Textmate-Bundle", 313 | "labels": ["snippets"], 314 | "releases": [ 315 | { 316 | "sublime_text": "*", 317 | "branch": "master" 318 | } 319 | ] 320 | }, 321 | { 322 | "name": "Zurb Ink Snippets", 323 | "details": "https://github.com/christianrojas/zurb-ink-sublime-snippets", 324 | "labels": ["snippets", "responsive", "email", "ink"], 325 | "releases": [ 326 | { 327 | "sublime_text": "*", 328 | "branch": "master" 329 | } 330 | ] 331 | }, 332 | { 333 | "name": "Zxx", 334 | "details": "https://github.com/ZxxLang/ZxxSublime", 335 | "labels": ["language syntax", "zxx"], 336 | "releases": [ 337 | { 338 | "sublime_text": ">=3092", 339 | "tags": true 340 | } 341 | ] 342 | } 343 | ] 344 | } 345 | -------------------------------------------------------------------------------- /channel.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "repositories": [ 4 | "./repository.json", 5 | "https://codexns.io/packages/packages.json", 6 | "https://donkirkby.github.io/live-py-plugin/sublime-package/package.json", 7 | "https://emmetio.github.io/sublime-text-plugin/registry.json", 8 | "https://packages.monokai.pro/packages.json", 9 | "https://raw.githubusercontent.com/20Tauri/DoxyDoxygen/master/DoxyDoxygen.json", 10 | "https://raw.githubusercontent.com/afterdesign/jshintify/master/packages.json", 11 | "https://raw.githubusercontent.com/ajryan/CSharpreter/master/packages.json", 12 | "https://raw.githubusercontent.com/amazedkoumei/SublimeKnifeSolo/master/packages.json", 13 | "https://raw.githubusercontent.com/Andr3as/Sublime-SurroundWith/master/packages.json", 14 | "https://raw.githubusercontent.com/apophys/sublime-packages/master/packages.json", 15 | "https://raw.githubusercontent.com/BenjaminSchaaf/sbnf/master/package_control/packages.json", 16 | "https://raw.githubusercontent.com/blachniet/sublime-mimosa/master/packages.json", 17 | "https://raw.githubusercontent.com/blake-regalia/linked-data.syntaxes/master/channels/sublime/package-control.json", 18 | "https://raw.githubusercontent.com/blueplanet/sublime-text-2-octopress/master/packages.json", 19 | "https://raw.githubusercontent.com/bradfeehan/SublimePHPCoverage/master/packages.json", 20 | "https://raw.githubusercontent.com/buildersbrewery/sublime-lsl/master/package_control_channel.json", 21 | "https://raw.githubusercontent.com/camperdave/EC2Upload/master/packages.json", 22 | "https://raw.githubusercontent.com/carlcalderon/ofLang/master/packages.json", 23 | "https://raw.githubusercontent.com/ccpalettes/sublime-lorem-text/master/packages.json", 24 | "https://raw.githubusercontent.com/chikatoike/IMESupport/master/packages.json", 25 | "https://raw.githubusercontent.com/chriswong/sublime-mootools-snippets/master/packages.json", 26 | "https://raw.githubusercontent.com/colinta/sublime_packages/main/packages.json", 27 | "https://raw.githubusercontent.com/connec/Open-in-ConEmu/master/packages.json", 28 | "https://raw.githubusercontent.com/corbinian/GrowlNotifier/master/packages.json", 29 | "https://raw.githubusercontent.com/csch0/SublimeText-Packages/master/packages.json", 30 | "https://raw.githubusercontent.com/damccull/sublimetext-SolarizedToggle/master/packages.json", 31 | "https://raw.githubusercontent.com/danielmagnussons/orgmode/master/packages.json", 32 | "https://raw.githubusercontent.com/danielobrien/sublime-DLX-syntax/master/packages.json", 33 | "https://raw.githubusercontent.com/enriquein/JavaSetterGetter/master/packages.json", 34 | "https://raw.githubusercontent.com/Exafunction/codeium-sublime/main/packages.json", 35 | "https://raw.githubusercontent.com/farcaller/DashDoc/master/packages.json", 36 | "https://raw.githubusercontent.com/filcab/SublimeLLDB/master/packages.json", 37 | "https://raw.githubusercontent.com/Floobits/floobits-sublime/master/packages.json", 38 | "https://raw.githubusercontent.com/freewizard/sublime_packages/master/package_control.json", 39 | "https://raw.githubusercontent.com/gcollazo/sublime_packages/master/packages.json", 40 | "https://raw.githubusercontent.com/Harrison-M/indent.txt-sublime/master/packages.json", 41 | "https://raw.githubusercontent.com/haru01/EasyOpen/master/packages.json", 42 | "https://raw.githubusercontent.com/hellpf/GimpRun/master/packages.json", 43 | "https://raw.githubusercontent.com/Hexenon/FoxCode/master/packages.json", 44 | "https://raw.githubusercontent.com/hgraca/sublime-text-2-php-refactor/master/packages.json", 45 | "https://raw.githubusercontent.com/himynameisjonas/sublime-ia-writer-opener/master/packages.json", 46 | "https://raw.githubusercontent.com/ikeike443/Sublime-Scalariform/master/packages.json", 47 | "https://raw.githubusercontent.com/ivancduran/krakensnippets/master/packages.json", 48 | "https://raw.githubusercontent.com/jadb/st2-search-cakephp-api/master/packages.json", 49 | "https://raw.githubusercontent.com/jadb/st2-search-cakephp-book/master/packages.json", 50 | "https://raw.githubusercontent.com/jeffturcotte/sublime_packages/master/packages.json", 51 | "https://raw.githubusercontent.com/JesseTG/ribosome-sublime/master/packages.json", 52 | "https://raw.githubusercontent.com/jfcherng-sublime/ST-my-package-control/master/repository-released.json", 53 | "https://raw.githubusercontent.com/jfernandez/SublimeRailsEval/master/packages.json", 54 | "https://raw.githubusercontent.com/jfromaniello/sublime-unity-recents/master/packages.json", 55 | "https://raw.githubusercontent.com/joacodeviaje/aftersave/master/packages.json", 56 | "https://raw.githubusercontent.com/joomlapro/joomla3-sublime-snippets/master/packages.json", 57 | "https://raw.githubusercontent.com/jrappen/sublime-packages/master/package_control_channel.json", 58 | "https://raw.githubusercontent.com/kairyou/sublime_packages/master/packages.json", 59 | "https://raw.githubusercontent.com/Kaizhi/SublimeUpdater/master/packages.json", 60 | "https://raw.githubusercontent.com/kallepersson/Sublime-Finder/master/packages.json", 61 | "https://raw.githubusercontent.com/Kasoki/FancyProjects/master/packages.json", 62 | "https://raw.githubusercontent.com/keeganstreet/sublime-specificity/master/packages.json", 63 | "https://raw.githubusercontent.com/kik0220/sublimetext_japanize/master/packages.json", 64 | "https://raw.githubusercontent.com/kylederkacz/lettuce-farmer/master/packages.json", 65 | "https://raw.githubusercontent.com/leporo/SublimeYammy/master/packages.json", 66 | "https://raw.githubusercontent.com/lifted-studios/AutoCopyright/master/packages.json", 67 | "https://raw.githubusercontent.com/lucifr/CNPunctuationAutopair/master/packages.json", 68 | "https://raw.githubusercontent.com/lyapun/sublime-text-2-python-test-runner/master/packages.json", 69 | "https://raw.githubusercontent.com/MattDMo/Neon-sublime-theme/master/packages.json", 70 | "https://raw.githubusercontent.com/mekwall/obsidian-color-scheme/master/packages.json", 71 | "https://raw.githubusercontent.com/Mendor/sublime-erlyman/master/packages.json", 72 | "https://raw.githubusercontent.com/mischah/Console-API-Snippets/master/packages.json", 73 | "https://raw.githubusercontent.com/naomichi-y/string_counter/master/packages.json", 74 | "https://raw.githubusercontent.com/NicholasBuse/sublime_packages/master/packages.json", 75 | "https://raw.githubusercontent.com/nLight/Phing/master/packages.json", 76 | "https://raw.githubusercontent.com/noraesae/ClassHierarchy/master/packages.json", 77 | "https://raw.githubusercontent.com/Open-MBEE/MSE/master/sublime-syntax/channels/sublime/package-control.json", 78 | "https://raw.githubusercontent.com/phyllisstein/Markboard3/master/packages.json", 79 | "https://raw.githubusercontent.com/quarnster/CompleteSharp/master/package.json", 80 | "https://raw.githubusercontent.com/quarnster/SublimeClang/master/package.json", 81 | "https://raw.githubusercontent.com/quarnster/SublimeJava/master/package.json", 82 | "https://raw.githubusercontent.com/randy3k/sublime_packages/master/packages.json", 83 | "https://raw.githubusercontent.com/recklesswaltz/Subtoise/master/packages.json", 84 | "https://raw.githubusercontent.com/royisme/SublimeOctopressTool/master/packages.json", 85 | "https://raw.githubusercontent.com/rpowers/sublime_stata/master/packages.json", 86 | "https://raw.githubusercontent.com/rse/sublime-scheme-rse/master/packages.json", 87 | "https://raw.githubusercontent.com/sdolard/sublime-jsrevival/master/packages.json", 88 | "https://raw.githubusercontent.com/seanliang/ConvertToUTF8/master/packages.json", 89 | "https://raw.githubusercontent.com/sentience/DokuWiki/master/packages.json", 90 | "https://raw.githubusercontent.com/sentience/HyperlinkHelper/master/packages.json", 91 | "https://raw.githubusercontent.com/sokolovstas/SublimeWebInspector/master/packages.json", 92 | "https://raw.githubusercontent.com/soncy/AutoComments-for-Sublime-Text-2/master/packages.json", 93 | "https://raw.githubusercontent.com/spectacles/CodeComplice/master/packages.json", 94 | "https://raw.githubusercontent.com/STealthy-and-haSTy/SublimePackages/master/packages.json", 95 | "https://raw.githubusercontent.com/SublimeLinter/package_control_channel/master/packages.json", 96 | "https://raw.githubusercontent.com/sublimelsp/repository/main/repository.json", 97 | "https://raw.githubusercontent.com/superbob/SublimeTextLanguageFrench/master/packages.json", 98 | "https://raw.githubusercontent.com/tbfisher/sublimetext-Pandoc/master/packages.json", 99 | "https://raw.githubusercontent.com/tcrosen/recessify/master/packages.json", 100 | "https://raw.githubusercontent.com/Ted-Mohamed/Split/master/packages.json", 101 | "https://raw.githubusercontent.com/teddyknox/SublimeChromeRefresh/master/packages.json", 102 | "https://raw.githubusercontent.com/theadamlt/sublime_packages/master/packages.json", 103 | "https://raw.githubusercontent.com/thecotne/smart_less_build/master/package.json", 104 | "https://raw.githubusercontent.com/thecotne/subl-protocol/master/package.json", 105 | "https://raw.githubusercontent.com/thinkv/sublime-elfinder/master/packages.json", 106 | "https://raw.githubusercontent.com/tillig/SublimeMSBuild/master/packages.json", 107 | "https://raw.githubusercontent.com/timonwong/sublime_packages/master/packages.json", 108 | "https://raw.githubusercontent.com/tomascayuelas/coolcodescheme/master/packages.json", 109 | "https://raw.githubusercontent.com/wallabyjs/sublime-text-releases/main/packages.json", 110 | "https://raw.githubusercontent.com/wallysalami/QuickLook/master/packages.json", 111 | "https://raw.githubusercontent.com/weslly/sublime_packages/master/packages.json", 112 | "https://raw.githubusercontent.com/wuub/requirementstxt/master/packages.json", 113 | "https://raw.githubusercontent.com/wuub/SublimeREPL/master/packages.json", 114 | "https://raw.githubusercontent.com/x3ns/x3-alpha-theme/master/packages.json", 115 | "https://raw.githubusercontent.com/xgenvn/InputHelper/master/packages.json", 116 | "https://raw.githubusercontent.com/zfkun/sublime-kissy-snippets/master/packages.json", 117 | "https://tinkerwell.app/plugins/sublime/packages.json", 118 | "https://tobygiacometti.com/sublime/packages.json" 119 | ] 120 | } 121 | -------------------------------------------------------------------------------- /repository/q.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "q KDB", 6 | "details": "https://github.com/komsit37/sublime-q", 7 | "labels": ["build system", "completions", "language syntax", "repl", "q", "kdb"], 8 | "releases": [ 9 | { 10 | "sublime_text": ">=3000", 11 | "tags": true, 12 | "platforms": ["osx-x64", "windows-x64", "linux-x64"] 13 | } 14 | ] 15 | }, 16 | { 17 | "name": "qasm_highlighting", 18 | "details": "https://github.com/gtaifu/qasm_highlighting", 19 | "labels": ["language syntax"], 20 | "releases": [ 21 | { 22 | "sublime_text": ">=3103", 23 | "tags": true 24 | } 25 | ] 26 | }, 27 | { 28 | "name": "QColor", 29 | "details": "https://github.com/raphaelquintao/QColor", 30 | "labels": ["color", "highlight", "highlighter", "converter", "picker", "hex", "rgb","rgba", "hsla", "hsl"], 31 | "author": "Raphael Quintao", 32 | "releases": [ 33 | { 34 | "sublime_text": ">=3000", 35 | "tags": true 36 | } 37 | ] 38 | }, 39 | { 40 | "name": "Qiita for Sublime", 41 | "details": "https://github.com/blueplanet/sublime-qiita", 42 | "releases": [ 43 | { 44 | "sublime_text": ">=3000", 45 | "tags": true 46 | } 47 | ] 48 | }, 49 | { 50 | "name": "QLSyntax", 51 | "details": "https://github.com/EdoDodo/QLSyntax", 52 | "labels": ["language syntax"], 53 | "releases": [ 54 | { 55 | "sublime_text": ">=3084", 56 | "tags": true 57 | } 58 | ] 59 | }, 60 | { 61 | "name": "QMakeProject", 62 | "details": "https://github.com/nsubiron/sublime-qmakeproject-syntax", 63 | "labels": ["language syntax"], 64 | "releases": [ 65 | { 66 | "sublime_text": "*", 67 | "tags": true 68 | } 69 | ] 70 | }, 71 | { 72 | "name": "QML", 73 | "details": "https://github.com/SublimeText/QML", 74 | "labels": ["language syntax", "snippets"], 75 | "releases": [ 76 | { 77 | "sublime_text": ">=4107", 78 | "tags": true 79 | } 80 | ] 81 | }, 82 | { 83 | "name": "QNav", 84 | "details": "https://github.com/ta-tikoma/QNav", 85 | "labels": ["navigation", "files navigation"], 86 | "releases": [ 87 | { 88 | "sublime_text": "*", 89 | "tags": true 90 | } 91 | ] 92 | }, 93 | { 94 | "name": "qooxdoo Tools", 95 | "details": "https://github.com/danielwagner/qooxdoo-sublime", 96 | "labels": ["auto-complete"], 97 | "releases": [ 98 | { 99 | "sublime_text": "<3000", 100 | "tags": true 101 | } 102 | ] 103 | }, 104 | { 105 | "name": "Qt Completions for C++", 106 | "details": "https://github.com/tushortz/Qt-Completions-for-Cpp", 107 | "labels": ["auto-complete", "completions", "snippets", "c++"], 108 | "releases": [ 109 | { 110 | "sublime_text": "*", 111 | "tags": true 112 | } 113 | ] 114 | }, 115 | { 116 | "name": "Quake3 Script", 117 | "details": "https://github.com/isRyven/Sublime-Text-Q3Script", 118 | "labels": ["completions", "language syntax", "snippets", "quake3", "script", "shader"], 119 | "releases": [ 120 | { 121 | "sublime_text": "*", 122 | "tags": true 123 | } 124 | ] 125 | }, 126 | { 127 | "name": "Quarto", 128 | "details": "https://github.com/quarto-dev/quarto-sublime", 129 | "labels": ["language syntax"], 130 | "releases": [ 131 | { 132 | "sublime_text": "*", 133 | "tags": true 134 | } 135 | ] 136 | }, 137 | { 138 | "name": "Quartz-Syntax", 139 | "details": "https://github.com/contradictioned/quartz-syntax", 140 | "labels": ["language syntax"], 141 | "releases": [ 142 | { 143 | "sublime_text": "*", 144 | "tags": true 145 | } 146 | ] 147 | }, 148 | { 149 | "name": "Quasar Snippets", 150 | "details": "https://github.com/bunya017/sublime-text-quasar-snippets", 151 | "labels": ["snippets"], 152 | "releases": [ 153 | { 154 | "sublime_text": "*", 155 | "tags": true 156 | } 157 | ] 158 | }, 159 | { 160 | "name": "Query Completions Silencer", 161 | "details": "https://github.com/twolfson/sublime-query-completions-silencer", 162 | "labels": ["auto-complete"], 163 | "releases": [ 164 | { 165 | "sublime_text": "*", 166 | "tags": true 167 | } 168 | ] 169 | }, 170 | { 171 | "name": "Quick Docs Launcher", 172 | "details": "https://github.com/linkarys/QuickDocsLauncher", 173 | "labels": ["docs", "search", "command line"], 174 | "releases": [ 175 | { 176 | "sublime_text": "*", 177 | "branch": "master" 178 | } 179 | ] 180 | }, 181 | { 182 | "name": "Quick File Creator", 183 | "details": "https://github.com/noklesta/SublimeQuickFileCreator", 184 | "releases": [ 185 | { 186 | "sublime_text": "*", 187 | "branch": "master" 188 | } 189 | ] 190 | }, 191 | { 192 | "name": "Quick File Move", 193 | "details": "https://github.com/wulftone/sublime-text-quick-file-move", 194 | "releases": [ 195 | { 196 | "sublime_text": "*", 197 | "branch": "master" 198 | } 199 | ] 200 | }, 201 | { 202 | "name": "Quick File Open", 203 | "details": "https://github.com/gsingh93/sublime-quick-file-open", 204 | "releases": [ 205 | { 206 | "sublime_text": "*", 207 | "tags": true 208 | } 209 | ] 210 | }, 211 | { 212 | "details": "https://github.com/facelessuser/QuickCal", 213 | "releases": [ 214 | { 215 | "sublime_text": "3000 - 4200", 216 | "tags": "st3-" 217 | }, 218 | { 219 | "sublime_text": ">=4201", 220 | "tags": "st4-" 221 | } 222 | ] 223 | }, 224 | { 225 | "name": "QuickEdit", 226 | "details": "https://github.com/gamcoh/QuickEdit", 227 | "labels": ["html", "css", "php", "quick edition"], 228 | "releases": [ 229 | { 230 | "sublime_text": "*", 231 | "tags": true, 232 | "platforms": "*" 233 | } 234 | ] 235 | }, 236 | { 237 | "name": "Quickfix List", 238 | "details": "https://github.com/cibinmathew/sublime_quickfix_list", 239 | "author": "Cibin Mathew", 240 | "labels": ["navigation"], 241 | "releases": [ 242 | { 243 | "sublime_text": "*", 244 | "platforms": ["osx", "linux"], 245 | "tags": true 246 | } 247 | ] 248 | }, 249 | { 250 | "name": "QuickGotoAnything", 251 | "details": "https://github.com/litefeel/Sublime-QuickGotoAnything", 252 | "releases": [ 253 | { 254 | "sublime_text": "*", 255 | "tags": true 256 | } 257 | ] 258 | }, 259 | { 260 | "name": "QuickLineNavigator", 261 | "author": "ChenZhu-Xie", 262 | "details": "https://github.com/ChenZhu-Xie/QuickLineNavigator", 263 | "labels": ["search", "grep", "highlight"], 264 | "releases": [ 265 | { 266 | "sublime_text": ">=3000", 267 | "tags": true 268 | } 269 | ] 270 | }, 271 | { 272 | "name": "QuickLinks", 273 | "details": "https://bitbucket.org/sigzegv/quicklinks", 274 | "releases": [ 275 | { 276 | "sublime_text": "*", 277 | "branch": "master" 278 | } 279 | ] 280 | }, 281 | { 282 | "name": "QuickOpen", 283 | "details": "https://github.com/zsytssk/QuickOpen", 284 | "releases": [ 285 | { 286 | "sublime_text": ">=3000", 287 | "tags": true 288 | } 289 | ] 290 | }, 291 | { 292 | "name": "QuickPanelEnhanced", 293 | "details": "https://github.com/jaytiar/SublimeQuickPanelEnhanced", 294 | "releases": [ 295 | { 296 | "sublime_text": ">=3000", 297 | "tags": true 298 | } 299 | ] 300 | }, 301 | { 302 | "details": "https://github.com/agibsonsw/QuickPrint", 303 | "releases": [ 304 | { 305 | "sublime_text": "<3000", 306 | "branch": "master" 307 | } 308 | ] 309 | }, 310 | { 311 | "details": "https://github.com/danpe/QuickRails", 312 | "previous_names": ["Quick Rails"], 313 | "releases": [ 314 | { 315 | "sublime_text": "<3000", 316 | "branch": "master" 317 | } 318 | ] 319 | }, 320 | { 321 | "name": "QuickRef Command Lookup", 322 | "details": "https://bitbucket.org/rablador/quickref", 323 | "releases": [ 324 | { 325 | "sublime_text": "*", 326 | "branch": "develop" 327 | } 328 | ] 329 | }, 330 | { 331 | "name": "QuickReplaceAtCursor", 332 | "details": "https://bitbucket.org/JorisL/quickreplaceatcursor", 333 | "releases": [ 334 | { 335 | "sublime_text": ">=3000", 336 | "tags": true 337 | } 338 | ] 339 | }, 340 | { 341 | "name": "QuickRulers", 342 | "description": "Easy access to the \"rulers\" setting", 343 | "details": "https://github.com/FichteFoll/QuickRulers", 344 | "releases": [ 345 | { 346 | "sublime_text": "*", 347 | "tags": "v" 348 | } 349 | ] 350 | }, 351 | { 352 | "name": "QuickSearchEnhanced", 353 | "details": "https://github.com/shagabutdinov/sublime-quick-search-enhanced", 354 | "donate": "https://github.com/shagabutdinov/sublime-enhanced/blob/master/readme-donations.md", 355 | "labels": ["sublime-enhanced", "text navigation"], 356 | "releases": [ 357 | { 358 | "sublime_text": "*", 359 | "branch": "master" 360 | } 361 | ] 362 | }, 363 | { 364 | "name": "QuickSettings", 365 | "details": "https://github.com/evandrocoan/QuickSettings", 366 | "author": ["klorenz", "evandrocoan"], 367 | "labels": ["preferences", "settings"], 368 | "releases": [ 369 | { 370 | "sublime_text": "*", 371 | "tags": true 372 | } 373 | ] 374 | }, 375 | { 376 | "name": "QuickSimplenote", 377 | "details": "https://github.com/sickmartian/quick_simplenote", 378 | "labels": ["simplenote", "todo", "php", "html", "quote"], 379 | "releases": [ 380 | { 381 | "sublime_text": "<3000", 382 | "tags": "st2-" 383 | }, 384 | { 385 | "sublime_text": ">=3000", 386 | "tags": "st3-" 387 | } 388 | ] 389 | }, 390 | { 391 | "name": "QuickTemplate (Go)", 392 | "details": "https://github.com/SharanSharathi/sublime_qtpl", 393 | "labels": ["auto-complete", "build system", "language syntax", "template", "go", "qtpl"], 394 | "releases": [ 395 | { 396 | "sublime_text": ">=3092", 397 | "tags": true 398 | } 399 | ] 400 | }, 401 | { 402 | "details": "https://github.com/chrislongo/QuickThemes", 403 | "releases": [ 404 | { 405 | "sublime_text": "*", 406 | "branch": "master" 407 | } 408 | ] 409 | }, 410 | { 411 | "name": "QuickView", 412 | "details": "https://github.com/jwortmann/quick-view", 413 | "labels": ["color", "image", "preview"], 414 | "releases": [ 415 | { 416 | "sublime_text": ">=3170", 417 | "tags": true 418 | } 419 | ] 420 | }, 421 | { 422 | "name": "QuickXDev", 423 | "details": "https://github.com/leitwolf/QuickXDev", 424 | "releases": [ 425 | { 426 | "sublime_text": "*", 427 | "branch": "master" 428 | } 429 | ] 430 | }, 431 | { 432 | "name": "Quijotipsum Snippet", 433 | "details": "https://github.com/ArmandoMendoza/sublime-quijotipsum", 434 | "releases": [ 435 | { 436 | "sublime_text": "*", 437 | "branch": "master" 438 | } 439 | ] 440 | }, 441 | { 442 | "name": "Qunit Snippets", 443 | "details": "https://github.com/maxhoffmann/qunit-snippets", 444 | "releases": [ 445 | { 446 | "sublime_text": "*", 447 | "branch": "master" 448 | } 449 | ] 450 | }, 451 | { 452 | "name": "Quote With Marker", 453 | "author": "Denny Korsukéwitz", 454 | "details": "https://github.com/dennykorsukewitz/Sublime-QuoteWithMarker", 455 | "labels": ["quote", "workflow", "codemarker", "marker", "markers", "comment", "commentline", "patch", "patcher", "diff", "compare", "helper"], 456 | "releases": [ 457 | { 458 | "sublime_text": "*", 459 | "tags": true 460 | } 461 | ] 462 | }, 463 | { 464 | "name": "QuoteHTML", 465 | "details": "https://github.com/mutian/Sublime-Quote-HTML", 466 | "labels": ["javascript", "js", "php", "html", "quote"], 467 | "releases": [ 468 | { 469 | "sublime_text": "*", 470 | "branch": "master" 471 | } 472 | ] 473 | } 474 | ] 475 | } 476 | -------------------------------------------------------------------------------- /repository/k.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "K Framework", 6 | "details": "https://github.com/Zhomart/kframework-Sublime-Plugin", 7 | "labels": ["language syntax", "kframework"], 8 | "releases": [ 9 | { 10 | "sublime_text": "*", 11 | "branch": "master" 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "KABEMS", 17 | "details": "https://github.com/konstantin24121/sublime-kabems", 18 | "labels": ["kabems", "bem", "language syntax"], 19 | "releases": [ 20 | { 21 | "sublime_text": "*", 22 | "tags": true 23 | } 24 | ] 25 | }, 26 | { 27 | "name": "Kahlan PHP Snippets", 28 | "details": "https://github.com/geryguilbon/sublime_kahlan_snippets", 29 | "labels": ["snippets", "kahlan", "tdd", "framework", "php"], 30 | "author": "gguilbon", 31 | "releases": [ 32 | { 33 | "sublime_text": "*", 34 | "tags": true 35 | } 36 | ] 37 | }, 38 | { 39 | "name": "KanaKana", 40 | "details": "https://github.com/mitsu-ksgr/KanaKana", 41 | "labels": ["japanese", "text manipulation"], 42 | "releases": [ 43 | { 44 | "sublime_text": ">=3000", 45 | "tags": true 46 | } 47 | ] 48 | }, 49 | { 50 | "name": "KarmaRunner", 51 | "details": "https://github.com/knee-cola/KarmaRunner", 52 | "labels": ["karma", "jasmine"], 53 | "releases": [ 54 | { 55 | "sublime_text": "*", 56 | "tags": true 57 | } 58 | ] 59 | }, 60 | { 61 | "name": "Kattis", 62 | "details": "https://github.com/matys18/sublime_kattis", 63 | "releases": [ 64 | { 65 | "sublime_text": "*", 66 | "tags": true 67 | } 68 | ] 69 | }, 70 | { 71 | "name": "Kconfig Syntax Highlight", 72 | "details": "https://github.com/fallrisk/Kconfig-Highlighter", 73 | "labels": ["kconfig", "language syntax", "kernel config"], 74 | "releases": [ 75 | { 76 | "sublime_text": "*", 77 | "tags": true 78 | } 79 | ] 80 | }, 81 | { 82 | "name": "KCPS Theme", 83 | "details": "https://github.com/KCPS/st3-theme-kcps", 84 | "labels": ["kcps", "color scheme", "theme"], 85 | "releases": [ 86 | { 87 | "sublime_text": ">=3000", 88 | "tags": true 89 | } 90 | ] 91 | }, 92 | { 93 | "name": "kdesrc-build", 94 | "details": "https://github.com/ratijas/kdesrc-build-sublime", 95 | "labels": ["completions", "language syntax", "snippets", "kde"], 96 | "releases": [ 97 | { 98 | "sublime_text": ">=4107", 99 | "tags": true 100 | } 101 | ] 102 | }, 103 | { 104 | "name": "KDL", 105 | "details": "https://github.com/eugenesvk/sublime-KDL", 106 | "labels": ["kdl", "language syntax"], 107 | "releases": [ 108 | { 109 | "sublime_text": ">=4075", 110 | "tags": true 111 | } 112 | ] 113 | }, 114 | { 115 | "name": "Keep Lines With Word", 116 | "details": "https://github.com/qianhk/KeepLinesWithWord", 117 | "labels": ["text manipulation"], 118 | "releases": [ 119 | { 120 | "sublime_text": "*", 121 | "tags": true 122 | } 123 | ] 124 | }, 125 | { 126 | "name": "Keep Open On Last Tab Close", 127 | "details": "https://github.com/vprimachenko/Sublime2KeepOpen", 128 | "releases": [ 129 | { 130 | "sublime_text": "*", 131 | "branch": "master" 132 | } 133 | ] 134 | }, 135 | { 136 | "name": "KeepPastedTextSelected", 137 | "details": "https://github.com/evandrocoan/KeepPastedTextSelected", 138 | "releases": [ 139 | { 140 | "sublime_text": "*", 141 | "tags": true 142 | } 143 | ] 144 | }, 145 | { 146 | "name": "Kellys Color Scheme", 147 | "details": "https://github.com/maxhoffmann/Kellys", 148 | "labels": ["color scheme"], 149 | "releases": [ 150 | { 151 | "sublime_text": "*", 152 | "branch": "master" 153 | } 154 | ] 155 | }, 156 | { 157 | "name": "Keras", 158 | "details": "https://github.com/MartinThoma/SublimeKeras", 159 | "author": "Martin Thoma", 160 | "releases": [ 161 | { 162 | "sublime_text": "*", 163 | "tags": true 164 | } 165 | ] 166 | }, 167 | { 168 | "name": "Kerbal Space Program Configuration Syntax", 169 | "details": "https://github.com/NathanJang/KSP-tmLanguage", 170 | "labels": ["language syntax"], 171 | "releases": [ 172 | { 173 | "sublime_text": "*", 174 | "tags": true 175 | } 176 | ] 177 | }, 178 | { 179 | "name": "KeybindingHelper", 180 | "details": "https://github.com/r-stein/sublime-text-keybinding-helper", 181 | "releases": [ 182 | { 183 | "sublime_text": "<3000", 184 | "tags": "st2-" 185 | }, 186 | { 187 | "sublime_text": ">=3000", 188 | "tags": "st3-" 189 | } 190 | ] 191 | }, 192 | { 193 | "name": "KeyboardNavigation", 194 | "details": "https://github.com/robertcollier4/KeyboardNavigation", 195 | "releases": [ 196 | { 197 | "sublime_text": "*", 198 | "tags": true 199 | } 200 | ] 201 | }, 202 | { 203 | "name": "KeyboardSpellCheck", 204 | "details": "https://github.com/jlknuth/KeyboardSpellCheck", 205 | "labels": ["spell check", "vintage", "vi", "google"], 206 | "releases": [ 207 | { 208 | "sublime_text": "*", 209 | "tags": true 210 | } 211 | ] 212 | }, 213 | { 214 | "name": "KeymapEnhanced", 215 | "details": "https://github.com/shagabutdinov/sublime-keymap-enhanced", 216 | "donate": "https://github.com/shagabutdinov/sublime-enhanced/blob/master/readme-donations.md", 217 | "labels": ["sublime-enhanced", "keymap"], 218 | "releases": [ 219 | { 220 | "sublime_text": "*", 221 | "branch": "master" 222 | } 223 | ] 224 | }, 225 | { 226 | "details": "https://github.com/welefen/KeymapManager", 227 | "releases": [ 228 | { 229 | "sublime_text": "<3000", 230 | "branch": "master" 231 | } 232 | ] 233 | }, 234 | { 235 | "name": "Keymaps", 236 | "details": "https://github.com/MiroHibler/sublime-keymaps", 237 | "labels": ["keymap", "cheat sheet"], 238 | "releases": [ 239 | { 240 | "sublime_text": ">=3000", 241 | "tags": true 242 | } 243 | ] 244 | }, 245 | { 246 | "name": "Khan", 247 | "details": "https://github.com/gerardroche/sublime-khan", 248 | "labels": ["utilities"], 249 | "releases": [ 250 | { 251 | "sublime_text": "*", 252 | "tags": true 253 | } 254 | ] 255 | }, 256 | { 257 | "name": "Kick Assembler (C64)", 258 | "details": "https://github.com/Swoffa/SublimeKickAssemblerC64", 259 | "labels": ["build system", "language syntax", "snippets"], 260 | "releases": [ 261 | { 262 | "sublime_text": ">=3000", 263 | "tags": true 264 | } 265 | ] 266 | }, 267 | { 268 | "name": "Kickoff Snippets", 269 | "details": "https://github.com/trykickoff/Kickoff-snippets", 270 | "labels": ["completions", "html", "css", "sass", "js", "javascript"], 271 | "releases": [ 272 | { 273 | "sublime_text": "*", 274 | "tags": true 275 | } 276 | ] 277 | }, 278 | { 279 | "name": "Kimbie Color Scheme", 280 | "details": "https://github.com/idleberg/Kimbie.tmTheme", 281 | "labels": ["color scheme"], 282 | "releases": [ 283 | { 284 | "sublime_text": "*", 285 | "branch": "master" 286 | } 287 | ] 288 | }, 289 | { 290 | "name": "Kirby2 CMS Snippets", 291 | "details": "https://github.com/mauricerenck/sublime-kirby2", 292 | "labels": ["completions", "snippets", "php"], 293 | "releases": [ 294 | { 295 | "sublime_text": "*", 296 | "tags": true 297 | } 298 | ] 299 | }, 300 | { 301 | "name": "Kirikae", 302 | "details": "https://github.com/dvcrn/sublime-kirikae", 303 | "labels": ["tab"], 304 | "releases": [ 305 | { 306 | "sublime_text": "*", 307 | "tags": true 308 | } 309 | ] 310 | }, 311 | { 312 | "name": "Kite Python Autocomplete", 313 | "details": "https://github.com/kiteco/KiteSublime", 314 | "labels": ["auto-complete", "documentation", "snippets", "python"], 315 | "releases": [ 316 | { 317 | "sublime_text": ">=3000", 318 | "tags": true 319 | } 320 | ] 321 | }, 322 | { 323 | "name": "Kivy Language", 324 | "details": "https://github.com/ivlevdenis/kivylng", 325 | "labels": ["auto-complete", "build system", "language syntax", "snippets"], 326 | "author": "ivlevdenis", 327 | "releases": [ 328 | { 329 | "sublime_text": "*", 330 | "tags": true 331 | } 332 | ] 333 | }, 334 | { 335 | "name": "KIXtart", 336 | "details": "https://github.com/vipex/KIXtart.tmLanguage", 337 | "labels": ["build system", "language syntax", "snippets", "kix"], 338 | "releases": [ 339 | { 340 | "sublime_text": "*", 341 | "tags": true 342 | } 343 | ] 344 | }, 345 | { 346 | "name": "klog", 347 | "details": "https://github.com/jotaen/klog-sublime", 348 | "labels": ["language syntax"], 349 | "releases": [ 350 | { 351 | "sublime_text": ">=3092", 352 | "tags": true 353 | } 354 | ] 355 | }, 356 | { 357 | "name": "knitr", 358 | "details": "https://github.com/andrewheiss/SublimeKnitr", 359 | "labels": ["language syntax", "knitr", "latex", "r", "markdown"], 360 | "releases": [ 361 | { 362 | "sublime_text": "*", 363 | "tags": true 364 | } 365 | ] 366 | }, 367 | { 368 | "details": "https://github.com/aziz/knockdown", 369 | "labels": ["language syntax"], 370 | "releases": [ 371 | { 372 | "sublime_text": "*", 373 | "branch": "master" 374 | } 375 | ] 376 | }, 377 | { 378 | "details": "https://github.com/SublimeText/KnowledgeBase", 379 | "releases": [ 380 | { 381 | "sublime_text": "*", 382 | "branch": "master" 383 | } 384 | ] 385 | }, 386 | { 387 | "name": "Koala", 388 | "details": "https://github.com/magneto538/Koala", 389 | "releases": [ 390 | { 391 | "sublime_text": "*", 392 | "tags": true 393 | } 394 | ] 395 | }, 396 | { 397 | "name": "Koala - Snippets", 398 | "details": "https://github.com/magneto538/Koala-snippets", 399 | "releases": [ 400 | { 401 | "sublime_text": "*", 402 | "tags": true 403 | } 404 | ] 405 | }, 406 | { 407 | "name": "Kodery", 408 | "details": "https://github.com/tgvashworth/sublime.kodery", 409 | "releases": [ 410 | { 411 | "sublime_text": "*", 412 | "tags": true 413 | } 414 | ] 415 | }, 416 | { 417 | "name": "KodiDevKit", 418 | "details": "https://github.com/phil65/kodidevkit", 419 | "author": "phil65", 420 | "donate": "https://blockchain.info/de/address/1KzWm7XtW42gyZQqg5CqW6k9fb3zWinM15", 421 | "labels": ["auto-complete", "completions", "language syntax", "snippets"], 422 | "releases": [ 423 | { 424 | "sublime_text": ">=3092", 425 | "tags": true 426 | } 427 | ] 428 | }, 429 | { 430 | "name": "Kohana 2.x Snippets", 431 | "details": "https://github.com/golf3gtiii/Kohana234-sublimeText2-plugin", 432 | "labels": ["snippets"], 433 | "releases": [ 434 | { 435 | "sublime_text": "*", 436 | "branch": "master" 437 | } 438 | ] 439 | }, 440 | { 441 | "name": "Kohana 3 Snippets", 442 | "details": "https://bitbucket.org/temperedvision/sublime-kohana3", 443 | "releases": [ 444 | { 445 | "sublime_text": "*", 446 | "branch": "master" 447 | } 448 | ] 449 | }, 450 | { 451 | "name": "Koken", 452 | "details": "https://github.com/koken/koken-sublime", 453 | "labels": ["language syntax"], 454 | "releases": [ 455 | { 456 | "sublime_text": "*", 457 | "branch": "master" 458 | } 459 | ] 460 | }, 461 | { 462 | "name": "KoLMafia ASH Syntax", 463 | "details": "https://github.com/digitrev/KoLMafiaAshSyntax", 464 | "labels": ["language syntax"], 465 | "releases": [ 466 | { 467 | "sublime_text": "*", 468 | "tags": true 469 | } 470 | ] 471 | }, 472 | { 473 | "name": "Kotlin", 474 | "details": "https://github.com/vkostyukov/kotlin-sublime-package", 475 | "labels": ["language syntax"], 476 | "releases": [ 477 | { 478 | "sublime_text": "*", 479 | "branch": "master" 480 | } 481 | ] 482 | }, 483 | { 484 | "name": "Koto", 485 | "details": "https://github.com/koto-lang/koto-sublime", 486 | "labels": ["language syntax"], 487 | "releases": [ 488 | { 489 | "sublime_text": ">=3092", 490 | "tags": true 491 | } 492 | ] 493 | }, 494 | { 495 | "name": "KRL (Kinetic Rule Language) Syntax", 496 | "details": "https://github.com/drautb/krl-syntax", 497 | "labels": ["language syntax"], 498 | "releases": [ 499 | { 500 | "sublime_text": "*", 501 | "tags": true 502 | } 503 | ] 504 | }, 505 | { 506 | "name": "KRL (Kinetic Rule Language) Validator", 507 | "details": "https://github.com/trevordixon/sublime-krl-validator", 508 | "releases": [ 509 | { 510 | "sublime_text": ">=3000", 511 | "branch": "master" 512 | } 513 | ] 514 | }, 515 | { 516 | "name": "Kroman", 517 | "details": "https://github.com/zhangkaiyulw/kroman-sublime", 518 | "releases": [ 519 | { 520 | "sublime_text": ">=3000", 521 | "tags": true 522 | } 523 | ] 524 | }, 525 | { 526 | "name": "KSP (Kontakt Script Processor)", 527 | "details": "https://github.com/nojanath/SublimeKSP", 528 | "labels": ["language syntax"], 529 | "releases": [ 530 | { 531 | "sublime_text": ">=3000", 532 | "tags": true 533 | } 534 | ] 535 | }, 536 | { 537 | "name": "KSQL Syntax Highlighter", 538 | "details": "https://github.com/blueedgenick/sublime-ksql", 539 | "labels": ["language syntax", "ksql", "sql"], 540 | "releases": [ 541 | { 542 | "sublime_text": ">=3092", 543 | "tags": true 544 | } 545 | ] 546 | }, 547 | { 548 | "name": "KuaiJi", 549 | "details": "https://github.com/ChengAnXu2014/KuaiJi", 550 | "labels": ["language syntax"], 551 | "releases": [ 552 | { 553 | "sublime_text": ">=3092", 554 | "tags": true 555 | } 556 | ] 557 | }, 558 | { 559 | "name": "Kubernetes Manifest autocomplete", 560 | "details": "https://github.com/xr1337/sublime-kubernetes-autocomplete", 561 | "releases": [ 562 | { 563 | "sublime_text": ">=3000", 564 | "tags": true 565 | } 566 | ] 567 | }, 568 | { 569 | "name": "Kulture", 570 | "details": "https://github.com/OmniSharp/Kulture", 571 | "releases": [ 572 | { 573 | "sublime_text": ">=3000", 574 | "branch": "release" 575 | } 576 | ] 577 | }, 578 | { 579 | "name": "Kung Fury", 580 | "details": "https://github.com/argyleink/Kung-Fury-Theme", 581 | "releases": [ 582 | { 583 | "sublime_text": ">=3000", 584 | "tags": true 585 | } 586 | ] 587 | }, 588 | { 589 | "name": "Kusto Syntax Highlighter", 590 | "details": "https://github.com/mmanela/kusto-sublime", 591 | "labels": ["language syntax", "kusto", "azure"], 592 | "releases": [ 593 | { 594 | "sublime_text": "*", 595 | "tags": true 596 | } 597 | ] 598 | }, 599 | { 600 | "name": "Kustom Color Schemes", 601 | "details": "https://github.com/kcmr/Kustom-Color-Schemes", 602 | "labels": ["color scheme"], 603 | "releases": [ 604 | { 605 | "sublime_text": "*", 606 | "tags": true 607 | } 608 | ] 609 | }, 610 | { 611 | "name": "KWrite Color Scheme", 612 | "details": "https://github.com/daris/sublime-kwrite-color-scheme", 613 | "labels": ["color scheme"], 614 | "releases": [ 615 | { 616 | "sublime_text": "*", 617 | "branch": "master" 618 | } 619 | ] 620 | } 621 | ] 622 | } 623 | -------------------------------------------------------------------------------- /repository/u.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "details": "https://github.com/SublimeText/UberSelection", 6 | "releases": [ 7 | { 8 | "sublime_text": "<3000", 9 | "branch": "master" 10 | } 11 | ] 12 | }, 13 | { 14 | "name": "Ublime Color Schemes", 15 | "details": "https://github.com/imagentleman/ublime", 16 | "labels": ["color scheme"], 17 | "releases": [ 18 | { 19 | "sublime_text": "*", 20 | "branch": "master" 21 | } 22 | ] 23 | }, 24 | { 25 | "details": "https://github.com/3v1n0/UbuntuPaste", 26 | "releases": [ 27 | { 28 | "sublime_text": "<3000", 29 | "tags": "st2-" 30 | }, 31 | { 32 | "sublime_text": ">=3000", 33 | "tags": true 34 | } 35 | ] 36 | }, 37 | { 38 | "name": "UCFHighlighter", 39 | "details": "https://github.com/LDprg/UCFHighlighter", 40 | "labels": ["language syntax"], 41 | "releases": [ 42 | { 43 | "sublime_text": ">=3092", 44 | "tags": true 45 | } 46 | ] 47 | }, 48 | { 49 | "name": "udev rules", 50 | "details": "https://github.com/tijn/udev.tmLanguage", 51 | "labels": ["language syntax"], 52 | "releases": [ 53 | { 54 | "sublime_text": "*", 55 | "tags": true 56 | } 57 | ] 58 | }, 59 | { 60 | "details": "https://github.com/dave-f/udp-trace", 61 | "releases": [ 62 | { 63 | "sublime_text": "<3000", 64 | "branch": "master" 65 | } 66 | ] 67 | }, 68 | { 69 | "name": "UHM Syntax", 70 | "details": "https://github.com/drzhnn/uhm-syntax-highlight", 71 | "labels": ["language syntax"], 72 | "releases": [ 73 | { 74 | "sublime_text": "*", 75 | "tags": true 76 | } 77 | ] 78 | }, 79 | { 80 | "name": "UIkitCompletions", 81 | "details": "https://github.com/dlzi/UIkitCompletions", 82 | "labels": ["auto-complete"], 83 | "previous_names": ["UIkit autocomplete"], 84 | "releases": [ 85 | { 86 | "sublime_text": ">=4000", 87 | "tags": true 88 | } 89 | ] 90 | }, 91 | { 92 | "name": "UL4", 93 | "details": "https://github.com/LivingLogic/LivingLogic.SublimeText.UL4", 94 | "labels": ["language syntax"], 95 | "releases": [ 96 | { 97 | "sublime_text": ">=4107", 98 | "tags": true 99 | } 100 | ] 101 | }, 102 | { 103 | "name": "Ultimate Dark", 104 | "details": "https://github.com/rubjo/ultimate-dark", 105 | "labels": ["dark", "color scheme"], 106 | "releases": [ 107 | { 108 | "sublime_text": "*", 109 | "tags": true 110 | } 111 | ] 112 | }, 113 | { 114 | "name": "Ultimate Dark Neo", 115 | "details": "https://github.com/rubjo/ultimate-dark-neo", 116 | "labels": ["dark", "theme", "color scheme"], 117 | "releases": [ 118 | { 119 | "sublime_text": "*", 120 | "tags": true 121 | } 122 | ] 123 | }, 124 | { 125 | "name": "Ulysses Style Sheets", 126 | "details": "https://github.com/ulyssesapp/ulss-sublime-plugin", 127 | "labels": ["auto-complete", "language syntax"], 128 | "releases": [ 129 | { 130 | "sublime_text": "*", 131 | "tags": true 132 | } 133 | ] 134 | }, 135 | { 136 | "name": "Umajin", 137 | "details": "https://github.com/AdamHarte/SublimeText-Umajin", 138 | "labels": ["language syntax", "snippets"], 139 | "releases": [ 140 | { 141 | "sublime_text": "*", 142 | "tags": true 143 | } 144 | ] 145 | }, 146 | { 147 | "name": "UMD snippets", 148 | "details": "https://github.com/garrettn/sublime-umd-snippets", 149 | "labels": ["snippets", "javascript"], 150 | "releases": [ 151 | { 152 | "sublime_text": "*", 153 | "tags": true 154 | } 155 | ] 156 | }, 157 | { 158 | "name": "Uncrustify", 159 | "details": "https://github.com/obxyann/Sublime-Uncrustify", 160 | "labels": ["formatting", "c", "c++", "java"], 161 | "releases": [ 162 | { 163 | "sublime_text": "*", 164 | "tags": true 165 | } 166 | ] 167 | }, 168 | { 169 | "name": "Underliner", 170 | "details": "https://github.com/dfleury/underliner", 171 | "labels": ["editor", "text selection", "testing", "utilities", "whitespace"], 172 | "releases": [ 173 | { 174 | "sublime_text": "*", 175 | "tags": true 176 | } 177 | ] 178 | }, 179 | { 180 | "name": "Underscore.js Snippets", 181 | "details": "https://github.com/carlo/sublime-underscorejs-snippets", 182 | "labels": ["snippets"], 183 | "releases": [ 184 | { 185 | "sublime_text": "*", 186 | "branch": "master" 187 | } 188 | ] 189 | }, 190 | { 191 | "name": "Underscorejs snippets", 192 | "details": "https://github.com/AntouanK/sublime-underscorejs-snippets", 193 | "author": "@antouank", 194 | "labels": ["auto-complete", "snippets", "javascript", "underscorejs", "underscore.js"], 195 | "releases": [ 196 | { 197 | "sublime_text": "*", 198 | "branch": "master" 199 | } 200 | ] 201 | }, 202 | { 203 | "name": "Undo Close Tab", 204 | "details": "https://github.com/scriptburn/sublimetext-undoclosetabs", 205 | "author": "Rajneesh kumar ojha", 206 | "labels": ["undo","tab"], 207 | "releases": [ 208 | { 209 | "sublime_text": "*", 210 | "tags": true 211 | } 212 | ] 213 | }, 214 | { 215 | "name": "Unicode Character Highlighter", 216 | "details": "https://github.com/possan/sublime_unicode_nbsp", 217 | "releases": [ 218 | { 219 | "sublime_text": "*", 220 | "branch": "master" 221 | } 222 | ] 223 | }, 224 | { 225 | "name": "Unicode Character Insert", 226 | "details": "https://github.com/Sorbing/sublime-unicode-character-insert", 227 | "releases": [ 228 | { 229 | "sublime_text": "*", 230 | "branch": "master" 231 | } 232 | ] 233 | }, 234 | { 235 | "name": "Unicode Escape", 236 | "details": "https://github.com/iahu/unicode-escape", 237 | "labels": ["escape", "unescape", "utf8"], 238 | "releases": [ 239 | { 240 | "sublime_text": "*", 241 | "tags": true 242 | } 243 | ] 244 | }, 245 | { 246 | "details": "https://github.com/mvoidex/UnicodeMath", 247 | "releases": [ 248 | { 249 | "sublime_text": "*", 250 | "branch": "master" 251 | } 252 | ] 253 | }, 254 | { 255 | "name": "UnicodeNormalizer", 256 | "details": "https://github.com/gh640/SublimeUnicodeNormalizer", 257 | "author": "Goto Hayato", 258 | "labels": ["text manipulation", "unicode", "utf8"], 259 | "releases": [ 260 | { 261 | "sublime_text": ">=3000", 262 | "tags": true 263 | } 264 | ] 265 | }, 266 | { 267 | "name": "Unicon", 268 | "details": "https://github.com/tajmone/Sublime-Unicon", 269 | "labels": ["language syntax"], 270 | "releases": [ 271 | { 272 | "sublime_text": ">=4000", 273 | "tags": true 274 | } 275 | ] 276 | }, 277 | { 278 | "name": "UNIFA", 279 | "details": "https://github.com/sal0max/sublime-unifa", 280 | "labels": ["language syntax"], 281 | "releases": [ 282 | { 283 | "sublime_text": "*", 284 | "tags": true 285 | } 286 | ] 287 | }, 288 | { 289 | "details": "https://github.com/rchl/UnindentPreprocessor", 290 | "releases": [ 291 | { 292 | "sublime_text": "*", 293 | "branch": "master" 294 | } 295 | ] 296 | }, 297 | { 298 | "name": "UniqueWindow", 299 | "details": "https://github.com/Julow/Sublime-UniqueWindow", 300 | "releases": [ 301 | { 302 | "sublime_text": "*", 303 | "tags": true 304 | } 305 | ] 306 | }, 307 | { 308 | "name": "Unit Test File Toggler", 309 | "details": "https://github.com/mjj2000/SublimeUnitTestFileToggler", 310 | "releases": [ 311 | { 312 | "sublime_text": "*", 313 | "tags": true 314 | } 315 | ] 316 | }, 317 | { 318 | "name": "UnitJS", 319 | "details": "https://github.com/unitjs/sublime-unitjs", 320 | "labels": ["auto-complete", "snippets", "testing", "javascript", "nodejs"], 321 | "releases": [ 322 | { 323 | "sublime_text": "*", 324 | "tags": true 325 | } 326 | ] 327 | }, 328 | { 329 | "name": "Unittest (python)", 330 | "details": "https://github.com/martinsam/sublime-unittest", 331 | "releases": [ 332 | { 333 | "sublime_text": "*", 334 | "branch": "master" 335 | } 336 | ] 337 | }, 338 | { 339 | "name": "UnitTesting", 340 | "details": "https://github.com/SublimeText/UnitTesting", 341 | "releases": [ 342 | { 343 | "sublime_text": "<3000", 344 | "tags": "st2-" 345 | }, 346 | { 347 | "sublime_text": ">=3000", 348 | "tags": true 349 | } 350 | ] 351 | }, 352 | { 353 | "name": "Unity Completions", 354 | "details": "https://github.com/oferei/sublime-unity-completions", 355 | "labels": ["auto-complete", "unity"], 356 | "releases": [ 357 | { 358 | "sublime_text": "*", 359 | "tags": true 360 | } 361 | ] 362 | }, 363 | { 364 | "name": "Unity Completions Light", 365 | "details": "https://github.com/oferei/sublime-unity-completions-light", 366 | "labels": ["auto-complete", "unity"], 367 | "releases": [ 368 | { 369 | "sublime_text": "*", 370 | "tags": true 371 | } 372 | ] 373 | }, 374 | { 375 | "name": "Unity Shader", 376 | "details": "https://github.com/waqiju/unity_shader_st3", 377 | "labels": ["auto-complete", "language syntax", "shader", "unity"], 378 | "releases": [ 379 | { 380 | "sublime_text": ">=3092", 381 | "tags": true 382 | } 383 | ] 384 | }, 385 | { 386 | "name": "Unity Test Completions", 387 | "details": "https://github.com/pajacobson/unity_test_completions", 388 | "labels": ["auto-complete", "snippets", "testing", "unity"], 389 | "releases": [ 390 | { 391 | "sublime_text": ">=3092", 392 | "tags": true 393 | } 394 | ] 395 | }, 396 | { 397 | "details": "https://github.com/UnicornForest/Unity3D", 398 | "labels": ["language syntax", "unity"], 399 | "releases": [ 400 | { 401 | "sublime_text": "*", 402 | "branch": "master" 403 | } 404 | ] 405 | }, 406 | { 407 | "name": "Unity3D Build System", 408 | "details": "https://github.com/fredpointzero/UnityBuild", 409 | "labels": ["build system", "unity"], 410 | "releases": [ 411 | { 412 | "sublime_text": "*", 413 | "branch": "master" 414 | } 415 | ] 416 | }, 417 | { 418 | "name": "Unity3d LeanTween Snippets", 419 | "details": "https://github.com/dentedpixel/Unity3d-LeanTween-Snippets", 420 | "labels": ["snippets", "unity"], 421 | "releases": [ 422 | { 423 | "sublime_text": "*", 424 | "branch": "master" 425 | } 426 | ] 427 | }, 428 | { 429 | "name": "Unity3D Reference Search", 430 | "details": "https://github.com/talitore/Unity3DReference", 431 | "labels": ["search", "unity"], 432 | "releases": [ 433 | { 434 | "sublime_text": "*", 435 | "tags": true 436 | } 437 | ] 438 | }, 439 | { 440 | "name": "Unity3D Script Reference Search", 441 | "details": "https://github.com/UnicornForest/Unity3DScriptReference", 442 | "labels": ["unity"], 443 | "releases": [ 444 | { 445 | "sublime_text": "<3000", 446 | "branch": "master" 447 | } 448 | ] 449 | }, 450 | { 451 | "name": "Unity3D Shader Highlighter and Snippets", 452 | "details": "https://github.com/petereichinger/Unity3D-Shader", 453 | "labels": ["language syntax", "snippets", "unity"], 454 | "releases": [ 455 | { 456 | "sublime_text": ">=3103", 457 | "tags": true 458 | } 459 | ] 460 | }, 461 | { 462 | "name": "Unity3D Snippets and Completes", 463 | "details": "https://github.com/UnicornForest/Unity3DSnippets", 464 | "labels": ["snippets", "unity"], 465 | "releases": [ 466 | { 467 | "sublime_text": "*", 468 | "branch": "master" 469 | } 470 | ] 471 | }, 472 | { 473 | "name": "Unnatural", 474 | "details": "https://github.com/andref/Unnatural-Sublime-Package", 475 | "labels": ["auto-complete", "language syntax", "snippets"], 476 | "releases": [ 477 | { 478 | "sublime_text": "*", 479 | "tags": true 480 | } 481 | ] 482 | }, 483 | { 484 | "name": "Unquote", 485 | "details": "https://github.com/mradamh/sublime-unquote", 486 | "releases": [ 487 | { 488 | "sublime_text": "*", 489 | "tags": true 490 | } 491 | ] 492 | }, 493 | { 494 | "name": "Unreal Shader", 495 | "details": "https://github.com/hellokenlee/SublimeUnrealShader", 496 | "labels": ["shader", "language syntax", "file navigation", "unreal", "ue4"], 497 | "releases": [ 498 | { 499 | "sublime_text": ">=3092", 500 | "tags": true 501 | } 502 | ] 503 | }, 504 | { 505 | "name": "Unreal Snippets", 506 | "details": "https://github.com/awforsythe/sublime-unreal-snippets", 507 | "labels": ["snippets", "unreal", "ue4"], 508 | "releases": [ 509 | { 510 | "sublime_text": "*", 511 | "tags": true 512 | } 513 | ] 514 | }, 515 | { 516 | "details": "https://github.com/Zinggi/UnrealScriptIDE", 517 | "labels": ["auto-complete", "build system", "code navigation", "debugger", "language syntax", "snippets", "udk", "unreal"], 518 | "releases": [ 519 | { 520 | "sublime_text": "*", 521 | "branch": "master" 522 | } 523 | ] 524 | }, 525 | { 526 | "name": "Unsplash", 527 | "details": "https://github.com/urre/Unsplash", 528 | "releases": [ 529 | { 530 | "sublime_text": "*", 531 | "branch": "master" 532 | } 533 | ] 534 | }, 535 | { 536 | "name": "UnusedCssFinder", 537 | "details": "https://github.com/Harderer/UnusedCssFinder-Sublime", 538 | "labels": ["css", "search"], 539 | "releases": [ 540 | { 541 | "sublime_text": ">=3000", 542 | "tags": true 543 | } 544 | ] 545 | }, 546 | { 547 | "name": "Unyson Snippets", 548 | "details": "https://github.com/XeCreators/Unyson-Snippets-Sublime", 549 | "homepage": "http://unyson.io/", 550 | "labels": ["snippets"], 551 | "author": "xecreators", 552 | "releases": [ 553 | { 554 | "sublime_text": "*", 555 | "tags": true 556 | } 557 | ] 558 | }, 559 | { 560 | "name": "url-utils", 561 | "details": "https://github.com/ulasozguler/sublime-url-utils", 562 | "releases": [ 563 | { 564 | "sublime_text": ">=3000", 565 | "tags": "st3-" 566 | } 567 | ] 568 | }, 569 | { 570 | "name": "UrlConverter", 571 | "details": "https://github.com/gh640/SublimeUrlConverter", 572 | "author": "Goto Hayato", 573 | "labels": ["url", "link", "html", "markdown", "restructuredtext"], 574 | "releases": [ 575 | { 576 | "sublime_text": ">=3000", 577 | "tags": true 578 | } 579 | ] 580 | }, 581 | { 582 | "details": "https://github.com/mastahyeti/URLEncode", 583 | "releases": [ 584 | { 585 | "sublime_text": "*", 586 | "branch": "master" 587 | } 588 | ] 589 | }, 590 | { 591 | "name": "uroboroSQL Formatter", 592 | "details": "https://github.com/future-architect/Sublime-uroboroSQL-formatter", 593 | "labels": ["formatting", "sql"], 594 | "releases": [ 595 | { 596 | "sublime_text": ">=3000", 597 | "tags": true 598 | } 599 | ] 600 | }, 601 | { 602 | "name": "userinterface.js Snippets", 603 | "details": "https://github.com/thoughtsunificator/userinterface.js-snippets-sublime", 604 | "labels": ["snippets"], 605 | "releases": [ 606 | { 607 | "sublime_text": "*", 608 | "tags": true 609 | } 610 | ] 611 | }, 612 | { 613 | "name": "UseStrict", 614 | "details": "https://github.com/phts/UseStrict", 615 | "labels": ["javascript"], 616 | "releases": [ 617 | { 618 | "sublime_text": ">=3092", 619 | "tags": true 620 | } 621 | ] 622 | }, 623 | { 624 | "name": "USFM Bible", 625 | "details": "https://github.com/michaelblyons/SublimeSyntax-USFM-Bible", 626 | "labels": ["language syntax", "bible"], 627 | "releases": [ 628 | { 629 | "sublime_text": ">=3092", 630 | "tags": "version/st3092/" 631 | } 632 | ] 633 | }, 634 | { 635 | "name": "USFOS", 636 | "details": "https://github.com/ckunte/usfos_st", 637 | "labels": ["language syntax", "usfos"], 638 | "releases": [ 639 | { 640 | "sublime_text": ">=3092", 641 | "tags": true 642 | } 643 | ] 644 | }, 645 | { 646 | "name": "UVMLog", 647 | "details": "https://github.com/UVMLog/UVMLog", 648 | "labels": ["language syntax"], 649 | "releases": [ 650 | { 651 | "sublime_text": ">=3000", 652 | "platforms": ["osx", "linux"], 653 | "tags": true 654 | } 655 | ] 656 | }, 657 | { 658 | "name": "UWSC", 659 | "details": "https://github.com/stuncloud/Sublime_UWSC", 660 | "labels": ["language syntax"], 661 | "releases": [ 662 | { 663 | "sublime_text": "*", 664 | "branch": "master" 665 | } 666 | ] 667 | }, 668 | { 669 | "name": "UXCore", 670 | "details": "https://github.com/recurrying/uxcore-plugin-for-sublime", 671 | "releases": [ 672 | { 673 | "sublime_text": "*", 674 | "tags": true 675 | } 676 | ] 677 | } 678 | ] 679 | } 680 | -------------------------------------------------------------------------------- /repository/v.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "V", 6 | "details": "https://github.com/elliotchance/vlang-sublime", 7 | "labels": ["language syntax", "v", "vlang"], 8 | "releases": [ 9 | { 10 | "sublime_text": "*", 11 | "tags": true 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "Vagrant", 17 | "details": "https://github.com/Stubbs/sublime-vagrant", 18 | "releases": [ 19 | { 20 | "sublime_text": "*", 21 | "branch": "master" 22 | } 23 | ] 24 | }, 25 | { 26 | "name": "Vala-TMBundle", 27 | "details": "https://github.com/technosophos/Vala-TMBundle", 28 | "labels": ["language syntax", "vala"], 29 | "releases": [ 30 | { 31 | "sublime_text": "*", 32 | "branch": "master" 33 | } 34 | ] 35 | }, 36 | { 37 | "name": "Vale", 38 | "details": "https://github.com/errata-ai/SubVale", 39 | "labels": ["linting", "prose"], 40 | "releases": [ 41 | { 42 | "sublime_text": ">=3080", 43 | "tags": true 44 | } 45 | ] 46 | }, 47 | { 48 | "name": "Valgrind", 49 | "details": "https://github.com/oliverseal/sublime-text-valgrind", 50 | "labels": ["language syntax", "c", "c++", "valgrind"], 51 | "releases": [ 52 | { 53 | "sublime_text": ">=3000", 54 | "tags": true 55 | } 56 | ] 57 | }, 58 | { 59 | "name": "VAlign", 60 | "details": "https://github.com/jarod2d/sublime_valign", 61 | "releases": [ 62 | { 63 | "sublime_text": "*", 64 | "branch": "master" 65 | } 66 | ] 67 | }, 68 | { 69 | "name": "Vanilla lodash Snippets", 70 | "details": "https://github.com/uargh/lodash-sublime-snippets", 71 | "labels": ["snippets", "javascript"], 72 | "releases": [ 73 | { 74 | "sublime_text": "*", 75 | "branch": "master" 76 | } 77 | ] 78 | }, 79 | { 80 | "name": "Vaporwave", 81 | "details": "https://github.com/ishanray/Vaporwave", 82 | "labels": ["color scheme", "vapor", "vaporwave"], 83 | "releases": [ 84 | { 85 | "sublime_text": "*", 86 | "tags": true 87 | } 88 | ] 89 | }, 90 | { 91 | "name": "Var Type", 92 | "details": "https://github.com/mohammad6006/var-type", 93 | "releases": [ 94 | { 95 | "sublime_text": ">=3084", 96 | "tags": true 97 | } 98 | ] 99 | }, 100 | { 101 | "name": "Varicolor", 102 | "details": "https://github.com/evan-erdos/varicolor", 103 | "labels": ["language syntax"], 104 | "releases": [ 105 | { 106 | "sublime_text": ">=3084", 107 | "tags": true 108 | } 109 | ] 110 | }, 111 | { 112 | "name": "Various Ipsum Snippets", 113 | "details": "https://github.com/marcelod/ipsums", 114 | "labels": ["snippets"], 115 | "releases": [ 116 | { 117 | "sublime_text": "*", 118 | "branch": "master" 119 | } 120 | ] 121 | }, 122 | { 123 | "name": "VarScoper", 124 | "details": "https://github.com/rcastagno/sublime_varscoper", 125 | "releases": [ 126 | { 127 | "sublime_text": "<3000", 128 | "branch": "master" 129 | } 130 | ] 131 | }, 132 | { 133 | "name": "Vash", 134 | "details": "https://github.com/theoperatore/VashSyntaxDefinition", 135 | "labels": ["language syntax"], 136 | "releases": [ 137 | { 138 | "sublime_text": "*", 139 | "branch": "master" 140 | } 141 | ] 142 | }, 143 | { 144 | "name": "VBDotNet", 145 | "details": "https://github.com/angryant0007/VBDotNetSyntax", 146 | "labels": ["language syntax", "vb", "visual basic"], 147 | "releases": [ 148 | { 149 | "sublime_text": "*", 150 | "tags": true 151 | } 152 | ] 153 | }, 154 | { 155 | "details": "https://github.com/SublimeText/VBScript", 156 | "labels": ["language syntax", "vb", "visual basic"], 157 | "releases": [ 158 | { 159 | "sublime_text": "*", 160 | "branch": "master" 161 | } 162 | ] 163 | }, 164 | { 165 | "name": "VCS Gutter", 166 | "details": "https://github.com/bradsokol/VcsGutter", 167 | "labels": ["vcs", "git", "hg", "svn"], 168 | "releases": [ 169 | { 170 | "sublime_text": "*", 171 | "tags": true 172 | } 173 | ] 174 | }, 175 | { 176 | "name": "VDF", 177 | "details": "https://github.com/bjorhn/Sublime-VDF-Languages", 178 | "labels": ["language syntax"], 179 | "releases": [ 180 | { 181 | "sublime_text": "*", 182 | "branch": "master" 183 | } 184 | ] 185 | }, 186 | { 187 | "name": "Veeam Logs Helper", 188 | "details": "https://github.com/yandexx/VeeamLogsHelper", 189 | "labels": ["language syntax"], 190 | "releases": [ 191 | { 192 | "sublime_text": ">=3124", 193 | "tags": true 194 | } 195 | ] 196 | }, 197 | { 198 | "name": "Vento", 199 | "details": "https://github.com/ventojs/sublime-vento", 200 | "labels": ["vento", "language syntax", "snippets"], 201 | "releases": [ 202 | { 203 | "sublime_text": ">=3126", 204 | "tags": true 205 | } 206 | ] 207 | }, 208 | { 209 | "name": "Verbose", 210 | "details": "https://github.com/Starli0n/SublimeVerbose", 211 | "releases": [ 212 | { 213 | "sublime_text": "*", 214 | "tags": true 215 | } 216 | ] 217 | }, 218 | { 219 | "name": "VeribleFormatterVerilog", 220 | "details": "https://github.com/sxr1223/VeribleFormatterVerilog", 221 | "releases": [ 222 | { 223 | "sublime_text": "*", 224 | "tags": true 225 | } 226 | ] 227 | }, 228 | { 229 | "name": "Verilog", 230 | "details": "https://github.com/pro711/sublime-verilog", 231 | "labels": ["language syntax"], 232 | "releases": [ 233 | { 234 | "sublime_text": "*", 235 | "branch": "master" 236 | } 237 | ] 238 | }, 239 | { 240 | "name": "Verilog Automatic", 241 | "details": "https://github.com/Tian-Changsong/Verilog-Automatic", 242 | "releases": [ 243 | { 244 | "sublime_text": "*", 245 | "branch": "master" 246 | } 247 | ] 248 | }, 249 | { 250 | "name": "Verilog Gadget", 251 | "details": "https://github.com/poucotm/Verilog-Gadget", 252 | "labels": ["verilog"], 253 | "releases": [ 254 | { 255 | "sublime_text": "*", 256 | "tags": true 257 | } 258 | ] 259 | }, 260 | { 261 | "name": "VEX", 262 | "details": "https://github.com/teared/VEX", 263 | "labels": ["language syntax"], 264 | "releases": [ 265 | { 266 | "sublime_text": ">=3126", 267 | "tags": true 268 | } 269 | ] 270 | }, 271 | { 272 | "name": "VEX Syntax", 273 | "details": "https://github.com/WhileRomeBurns/VEX_Syntax", 274 | "labels": ["language syntax"], 275 | "releases": [ 276 | { 277 | "sublime_text": "*", 278 | "tags": true 279 | } 280 | ] 281 | }, 282 | { 283 | "details": "https://github.com/mhilborn/VGR-Assistant", 284 | "labels": ["language syntax"], 285 | "releases": [ 286 | { 287 | "sublime_text": "*", 288 | "branch": "master" 289 | } 290 | ] 291 | }, 292 | { 293 | "name": "VHDL", 294 | "details": "https://github.com/yangsu/sublime-vhdl", 295 | "labels": ["language syntax"], 296 | "releases": [ 297 | { 298 | "sublime_text": "*", 299 | "tags": true 300 | } 301 | ] 302 | }, 303 | { 304 | "name": "VHDL Mode", 305 | "details": "https://github.com/Remillard/VHDL-Mode", 306 | "labels": ["language syntax", "snippets", "vhdl"], 307 | "releases": [ 308 | { 309 | "sublime_text": ">=3092", 310 | "tags": true 311 | } 312 | ] 313 | }, 314 | { 315 | "name": "VHS", 316 | "details": "https://github.com/patopesto/Sublime-Text-VHS-Syntax", 317 | "labels": ["language syntax"], 318 | "releases": [ 319 | { 320 | "sublime_text": ">=4107", 321 | "tags": true 322 | } 323 | ] 324 | }, 325 | { 326 | "name": "View Bookmarks", 327 | "details": "https://github.com/adam-zethraeus/SublimeViewBookmarks", 328 | "labels": ["bookmarks", "file navigation"], 329 | "releases": [ 330 | { 331 | "sublime_text": "*", 332 | "tags": true 333 | } 334 | ] 335 | }, 336 | { 337 | "name": "View In Browser", 338 | "details": "https://github.com/adampresley/sublime-view-in-browser", 339 | "releases": [ 340 | { 341 | "sublime_text": "*", 342 | "branch": "master" 343 | } 344 | ] 345 | }, 346 | { 347 | "name": "View Movement", 348 | "details": "https://github.com/danielhopkins/sublime-view-movement", 349 | "releases": [ 350 | { 351 | "sublime_text": "<3000", 352 | "branch": "master" 353 | } 354 | ] 355 | }, 356 | { 357 | "name": "ViewSetting", 358 | "details": "https://github.com/fsaad/Sublime-ViewSetting", 359 | "releases": [ 360 | { 361 | "sublime_text": ">=3000", 362 | "tags": true 363 | } 364 | ] 365 | }, 366 | { 367 | "name": "VIM Navigation", 368 | "details": "https://github.com/demisx/sublime-vim-navigation", 369 | "releases": [ 370 | { 371 | "sublime_text": "*", 372 | "branch": "master" 373 | } 374 | ] 375 | }, 376 | { 377 | "name": "VimL", 378 | "details": "https://github.com/SalGnt/Sublime-VimL", 379 | "author": "Salvatore Gentile", 380 | "labels": ["language syntax"], 381 | "releases": [ 382 | { 383 | "sublime_text": "*", 384 | "tags": true 385 | } 386 | ] 387 | }, 388 | { 389 | "name": "VimModelines", 390 | "details": "https://github.com/pestilence669/VimModelines", 391 | "author": "Paul Chandler", 392 | "labels": ["formatting", "vim", "indentation", "modeline"], 393 | "releases": [ 394 | { 395 | "sublime_text": ">=3000", 396 | "tags": true 397 | } 398 | ] 399 | }, 400 | { 401 | "name": "Vimprov", 402 | "details": "https://github.com/TeaUponTweed/Vimprov", 403 | "labels": ["vim"], 404 | "releases": [ 405 | { 406 | "sublime_text": ">=3000", 407 | "tags": true 408 | } 409 | ] 410 | }, 411 | { 412 | "name": "Vintage Escape", 413 | "details": "https://github.com/tonymagro/VintageEscape", 414 | "releases": [ 415 | { 416 | "sublime_text": "*", 417 | "branch": "master" 418 | } 419 | ] 420 | }, 421 | { 422 | "name": "Vintage Relative Lines", 423 | "details": "https://github.com/bicarlsen/vintage_relnums", 424 | "labels": [ "vintage", "line numbers" ], 425 | "releases": [ 426 | { 427 | "sublime_text": ">=3000", 428 | "tags": true 429 | } 430 | ] 431 | }, 432 | { 433 | "name": "Vintage Solid Caret", 434 | "details": "https://github.com/muffinmad/VintageSolidCaret", 435 | "author": "muffinmad", 436 | "releases": [ 437 | { 438 | "sublime_text": ">=3000", 439 | "tags": true 440 | } 441 | ] 442 | }, 443 | { 444 | "name": "Vintage Surround", 445 | "details": "https://github.com/jcartledge/vintage-sublime-surround", 446 | "releases": [ 447 | { 448 | "sublime_text": "*", 449 | "branch": "master" 450 | } 451 | ] 452 | }, 453 | { 454 | "name": "Vintage YankStack", 455 | "details": "https://github.com/linktohack/VintageYankStack", 456 | "author": "Quang-Linh LE", 457 | "labels": ["vim", "kill ring"], 458 | "releases": [ 459 | { 460 | "sublime_text": ">=3000", 461 | "tags": true 462 | } 463 | ] 464 | }, 465 | { 466 | "details": "https://github.com/garyc40/Vintage-Origami", 467 | "releases": [ 468 | { 469 | "sublime_text": "*", 470 | "branch": "master" 471 | } 472 | ] 473 | }, 474 | { 475 | "name": "VintageColor", 476 | "details": "https://github.com/acarabott/VintageColor", 477 | "releases": [ 478 | { 479 | "sublime_text": ">=3000", 480 | "tags": true 481 | } 482 | ] 483 | }, 484 | { 485 | "name": "VintageES", 486 | "details": "https://github.com/SublimeText/Vintage-Extended-Support", 487 | "releases": [ 488 | { 489 | "sublime_text": ">=3000", 490 | "tags": true 491 | } 492 | ] 493 | }, 494 | { 495 | "details": "https://github.com/SublimeText/VintageEx", 496 | "releases": [ 497 | { 498 | "sublime_text": "<3000", 499 | "branch": "master" 500 | } 501 | ] 502 | }, 503 | { 504 | "name": "VintageLines", 505 | "details": "https://github.com/co-dh/VintageLines", 506 | "releases": [ 507 | { 508 | "sublime_text": "*", 509 | "tags": true 510 | } 511 | ] 512 | }, 513 | { 514 | "details": "https://github.com/guillermooo/Vintageous", 515 | "releases": [ 516 | { 517 | "sublime_text": ">=3000", 518 | "tags": true 519 | } 520 | ] 521 | }, 522 | { 523 | "name": "VintageousOrigami", 524 | "details": "https://github.com/rodcloutier/Vintageous-Origami", 525 | "releases": [ 526 | { 527 | "sublime_text": ">=3000", 528 | "tags": true 529 | } 530 | ] 531 | }, 532 | { 533 | "name": "VintageousPluginSurround", 534 | "details": "https://github.com/guillermooo/Vintageous_Plugin_Surround", 535 | "releases": [ 536 | { 537 | "sublime_text": ">=3000", 538 | "tags": true 539 | } 540 | ] 541 | }, 542 | { 543 | "name": "Virgil", 544 | "details": "https://github.com/lpstein/sublime-virgil", 545 | "labels": ["language syntax"], 546 | "releases": [ 547 | { 548 | "sublime_text": "*", 549 | "tags": true 550 | } 551 | ] 552 | }, 553 | { 554 | "name": "Virtual Host Snippet", 555 | "details": "https://github.com/unknownuser88/virtualhost", 556 | "author": "David Bekoyan", 557 | "labels": ["auto-complete", "snippets"], 558 | "releases": [ 559 | { 560 | "sublime_text": "*", 561 | "tags": true 562 | } 563 | ] 564 | }, 565 | { 566 | "name": "Virtualenv", 567 | "details": "https://github.com/AdrianLC/sublime-text-virtualenv", 568 | "author": "AdrianLC", 569 | "labels": ["build system"], 570 | "releases": [ 571 | { 572 | "sublime_text": ">=3000", 573 | "tags": true 574 | } 575 | ] 576 | }, 577 | { 578 | "name": "Visual studio code", 579 | "description": "Open visual studio code from sublime, light integration", 580 | "details": "https://github.com/stoivo/sublime-open-in-vscode", 581 | "issues": "https://github.com/stoivo/sublime-open-in-vscode/issues", 582 | "labels": ["vscode", "visual studio code"], 583 | "releases": [ 584 | { 585 | "sublime_text": "*", 586 | "tags": true 587 | } 588 | ] 589 | }, 590 | { 591 | "name": "Visual Studio Code Plus Scheme", 592 | "details": "https://github.com/vbasky/sublime-vscode-plus", 593 | "issues": "https://github.com/vbasky/sublime-vscode-plus/issues", 594 | "labels": ["color scheme"], 595 | "releases": [ 596 | { 597 | "sublime_text": "*", 598 | "tags": true 599 | } 600 | ] 601 | }, 602 | { 603 | "name": "Visual Studio Dark", 604 | "details": "https://github.com/nikeee/visual-studio-dark", 605 | "labels": ["color scheme"], 606 | "releases": [ 607 | { 608 | "sublime_text": "*", 609 | "branch": "master" 610 | } 611 | ] 612 | }, 613 | { 614 | "name": "VisualChanger", 615 | "details": "https://github.com/kivS/sublime-text-visual-changer", 616 | "author": "Vik Borges", 617 | "releases": [ 618 | { 619 | "sublime_text": ">=3000", 620 | "tags": true 621 | } 622 | ] 623 | }, 624 | { 625 | "name": "Visualforce", 626 | "details": "https://github.com/brnrc/sublime-visualforce", 627 | "author": "Bruno Cardoso", 628 | "labels": ["auto-complete", "language syntax"], 629 | "releases": [ 630 | { 631 | "sublime_text": "*", 632 | "branch": "master" 633 | } 634 | ] 635 | }, 636 | { 637 | "name": "VisualforcePreview", 638 | "details": "https://github.com/Lanceshi2/VisualforcePreview", 639 | "author": "Lance Shi", 640 | "releases": [ 641 | { 642 | "sublime_text": "*", 643 | "tags": true 644 | } 645 | ] 646 | }, 647 | { 648 | "name": "Vlt", 649 | "details": "https://github.com/tomalec/Sublime-Text-2-Vlt-Plugin", 650 | "releases": [ 651 | { 652 | "sublime_text": "<3000", 653 | "branch": "master" 654 | } 655 | ] 656 | }, 657 | { 658 | "name": "vm4docker", 659 | "details": "https://github.com/yvess/sublime_vm4docker", 660 | "releases": [ 661 | { 662 | "sublime_text": "*", 663 | "platforms": ["osx", "linux"], 664 | "tags": true 665 | } 666 | ] 667 | }, 668 | { 669 | "name": "Vn Ime", 670 | "details": "https://github.com/glmanhtu/VN_IME", 671 | "releases": [ 672 | { 673 | "sublime_text": ">=3000", 674 | "branch": "master" 675 | } 676 | ] 677 | }, 678 | { 679 | "name": "VoiceCode", 680 | "details": "https://github.com/VoiceCode/sublime-voicecode", 681 | "releases": [ 682 | { 683 | "sublime_text": "*", 684 | "tags": true 685 | } 686 | ] 687 | }, 688 | { 689 | "name": "Volt", 690 | "details": "https://github.com/phalcon/volt-sublime-textmate", 691 | "author": "The Phalcon Team", 692 | "labels": ["language syntax"], 693 | "releases": [ 694 | { 695 | "sublime_text": "*", 696 | "branch": "master" 697 | } 698 | ] 699 | }, 700 | { 701 | "name": "Voxa Framework Snippets", 702 | "details": "https://github.com/wuelcas/sublime-voxa-framework-snippets", 703 | "labels": ["snippets", "voxa", "alexa", "skills", "echo"], 704 | "releases": [ 705 | { 706 | "sublime_text": "*", 707 | "tags": true 708 | } 709 | ] 710 | }, 711 | { 712 | "name": "VPC Script", 713 | "details": "https://github.com/GitSparTV/VPCSyntaxHighlighting", 714 | "author": "Spar", 715 | "labels": ["language syntax"], 716 | "releases": [ 717 | { 718 | "sublime_text": "*", 719 | "tags": true 720 | } 721 | ] 722 | }, 723 | { 724 | "name": "Vray", 725 | "details": "https://github.com/Aloiseau/VraySublime", 726 | "labels": ["language syntax"], 727 | "releases": [ 728 | { 729 | "sublime_text": "*", 730 | "tags": true 731 | } 732 | ] 733 | }, 734 | { 735 | "name": "VSCMT", 736 | "details": "https://github.com/drew-wallace/VSCMT", 737 | "releases": [ 738 | { 739 | "sublime_text": ">=3000", 740 | "tags": true 741 | } 742 | ] 743 | }, 744 | { 745 | "name": "VSCodeColumnSelection", 746 | "details": "https://github.com/acheronfail/VSCodeColumnSelection", 747 | "releases": [ 748 | { 749 | "sublime_text": ">=3000", 750 | "tags": true 751 | } 752 | ] 753 | }, 754 | { 755 | "name": "Vtex Snippets", 756 | "details": "https://github.com/ricardodantas/sublime-vtex-snippets", 757 | "releases": [ 758 | { 759 | "sublime_text": "*", 760 | "branch": "master" 761 | } 762 | ] 763 | }, 764 | { 765 | "name": "Vtex Tags", 766 | "details": "https://github.com/Rodrigonavarro23/vtex-tags", 767 | "releases": [ 768 | { 769 | "sublime_text": "*", 770 | "tags": true 771 | } 772 | ] 773 | }, 774 | { 775 | "name": "Vue", 776 | "details": "https://github.com/SublimeText/Vue", 777 | "previous_names": ["Vue Syntax Highlight"], 778 | "labels": ["language syntax", "vue", "javascript"], 779 | "releases": [ 780 | { 781 | "sublime_text": "<3153", 782 | "tags": "oldsyntax-" 783 | }, 784 | { 785 | "sublime_text": "3153 - 4106", 786 | "tags": "newsyntax-" 787 | }, 788 | { 789 | "sublime_text": "4107 - 4125", 790 | "tags": "4107-" 791 | }, 792 | { 793 | "sublime_text": ">=4126", 794 | "tags": "4126-" 795 | } 796 | ] 797 | }, 798 | { 799 | "name": "VueFormatter", 800 | "details": "https://github.com/baixuexiyang/VUEFormatter", 801 | "author": "keven", 802 | "releases": [ 803 | { 804 | "sublime_text": "*", 805 | "tags": true 806 | } 807 | ] 808 | }, 809 | { 810 | "name": "Vuejs Complete Package", 811 | "details": "https://github.com/BrainBuzzer/vuejs-sublime-complete", 812 | "labels": ["language syntax", "vue", "javascript"], 813 | "releases": [ 814 | { 815 | "sublime_text": "*", 816 | "tags": true 817 | } 818 | ] 819 | }, 820 | { 821 | "name": "Vuejs Snippets", 822 | "details": "https://github.com/filipelinhares/vuejs-snippets-sublime", 823 | "labels": ["snippets", "vue", "javascript"], 824 | "releases": [ 825 | { 826 | "sublime_text": "*", 827 | "branch": "master" 828 | } 829 | ] 830 | }, 831 | { 832 | "name": "Vuejs Snippets Airbnb", 833 | "details": "https://github.com/kavalcante/vuejs-snippets-airbnb-sublime", 834 | "labels": ["snippets", "vue", "javascript"], 835 | "releases": [ 836 | { 837 | "sublime_text": "*", 838 | "tags": true 839 | } 840 | ] 841 | }, 842 | { 843 | "name": "Vuln", 844 | "details": "https://github.com/Shimmy/vuln", 845 | "author": "Shimmy", 846 | "labels": ["language syntax", "snippets"], 847 | "releases": [ 848 | { 849 | "sublime_text": "*", 850 | "tags": true 851 | } 852 | ] 853 | }, 854 | { 855 | "name": "VvPHPDollar", 856 | "details": "https://github.com/ZhaonanLi/VvPhpDollar", 857 | "author": "Zhaonan Li", 858 | "releases": [ 859 | { 860 | "sublime_text": "*", 861 | "tags": true 862 | } 863 | ] 864 | } 865 | ] 866 | } 867 | -------------------------------------------------------------------------------- /repository/w.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "W2P", 6 | "details": "https://bitbucket.org/kfog/w2p", 7 | "labels": ["web2py"], 8 | "releases": [ 9 | { 10 | "sublime_text": ">=3000", 11 | "tags": true 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "W3CValidators", 17 | "details": "https://github.com/ericsorenson/Sublime-W3CValidators", 18 | "labels": ["html", "svg", "validation"], 19 | "releases": [ 20 | { 21 | "sublime_text": "*", 22 | "tags": true 23 | } 24 | ] 25 | }, 26 | { 27 | "name": "Wakame Color Scheme", 28 | "details": "https://github.com/toshimaru/sublime-wakame", 29 | "labels": ["color scheme"], 30 | "releases": [ 31 | { 32 | "sublime_text": ">=3170", 33 | "tags": true 34 | } 35 | ] 36 | }, 37 | { 38 | "name": "WakaTime", 39 | "details": "https://github.com/wakatime/sublime-wakatime", 40 | "labels": ["time tracking", "coding", "utilities", "productivity"], 41 | "releases": [ 42 | { 43 | "sublime_text": "*", 44 | "tags": true 45 | } 46 | ] 47 | }, 48 | { 49 | "name": "Wanderlei Color Scheme", 50 | "details": "https://github.com/JeremySaks/wanderlei-color-scheme", 51 | "labels": ["color scheme"], 52 | "releases": [ 53 | { 54 | "sublime_text": "*", 55 | "tags": true 56 | } 57 | ] 58 | }, 59 | { 60 | "name": "Warp-OS Color Scheme", 61 | "details": "https://github.com/idleberg/WarpOS.tmTheme", 62 | "labels": ["color scheme"], 63 | "releases": [ 64 | { 65 | "sublime_text": "*", 66 | "branch": "master" 67 | } 68 | ] 69 | }, 70 | { 71 | "name": "WASM Interface Type", 72 | "details": "https://github.com/SublimeText/WasmInterfaceType", 73 | "labels": ["language syntax", "wasm", "wit"], 74 | "releases": [ 75 | { 76 | "sublime_text": "4107 - 4142", 77 | "tags": "4107-" 78 | }, 79 | { 80 | "sublime_text": ">=4143", 81 | "tags": "4143-" 82 | } 83 | ] 84 | }, 85 | { 86 | "name": "Waxeye", 87 | "details": "https://github.com/tijn/sublime-waxeye", 88 | "labels": ["language syntax"], 89 | "releases": [ 90 | { 91 | "sublime_text": "*", 92 | "tags": true 93 | } 94 | ] 95 | }, 96 | { 97 | "details": "https://github.com/hsarret/Waza", 98 | "releases": [ 99 | { 100 | "sublime_text": ">=3143", 101 | "tags": true 102 | } 103 | ] 104 | }, 105 | { 106 | "name": "WDL Syntax", 107 | "details": "https://github.com/broadinstitute/wdl-sublime-syntax-highlighter", 108 | "labels": ["language syntax"], 109 | "releases": [ 110 | { 111 | "sublime_text": ">=3092", 112 | "tags": true 113 | } 114 | ] 115 | }, 116 | { 117 | "name": "Weave", 118 | "details": "https://github.com/mailtoharshit/Weave", 119 | "labels": ["auto-complete", "snippets"], 120 | "releases": [ 121 | { 122 | "sublime_text": "*", 123 | "tags": true 124 | } 125 | ] 126 | }, 127 | { 128 | "name": "Web Audio API Autocomplete", 129 | "details": "https://github.com/hoch/waa-autocomplete", 130 | "labels": ["auto-complete", "snippets"], 131 | "releases": [ 132 | { 133 | "sublime_text": "*", 134 | "tags": true 135 | } 136 | ] 137 | }, 138 | { 139 | "name": "Web Encoders", 140 | "details": "https://github.com/revolunet/sublimetext-web-encoders", 141 | "releases": [ 142 | { 143 | "sublime_text": "<3000", 144 | "branch": "master" 145 | } 146 | ] 147 | }, 148 | { 149 | "name": "webAgent", 150 | "details": "https://github.com/seanfagan/webagent_syntax", 151 | "labels": ["webagent", "language syntax"], 152 | "releases": [ 153 | { 154 | "sublime_text": "*", 155 | "tags": true 156 | } 157 | ] 158 | }, 159 | { 160 | "name": "WebAssembly Text Syntax", 161 | "details": "https://github.com/bathos/wast-sublime-syntax", 162 | "labels": [ "wasm", "wast", "wat", "web assembly", "language syntax" ], 163 | "releases": [ 164 | { 165 | "sublime_text": ">=3084", 166 | "tags": true 167 | } 168 | ] 169 | }, 170 | { 171 | "name": "WebBuilder ST", 172 | "details": "https://github.com/Houfeng/WebBuilder-ST", 173 | "releases": [ 174 | { 175 | "sublime_text": "*", 176 | "branch": "master" 177 | } 178 | ] 179 | }, 180 | { 181 | "name": "WebDavSync", 182 | "details": "https://github.com/appconditioner/SublimeWebDavSync", 183 | "releases": [ 184 | { 185 | "sublime_text": "*", 186 | "tags": true 187 | } 188 | ] 189 | }, 190 | { 191 | "name": "WebDevShell", 192 | "details": "https://github.com/TheDoctor0/WebDevShell", 193 | "labels": ["web", "dev", "shell", "composer", "laravel", "artisan", "npm", "yarn", "php", "phpstan", "psalm", "eslint", "python"], 194 | "author": "Dawid Janik", 195 | "description": "Execute shell commands related to web apps development: Laravel Artisan, Composer, NPM, Yarn, Python, PHP, PHPStan, Psalm, ESLint and more!", 196 | "releases": [ 197 | { 198 | "sublime_text": ">=3092", 199 | "tags": true 200 | } 201 | ] 202 | }, 203 | { 204 | "name": "WebdriverIO", 205 | "details": "https://github.com/webdriverio/sublime-bundle", 206 | "labels": ["auto-complete"], 207 | "releases": [ 208 | { 209 | "sublime_text": "*", 210 | "tags": true 211 | } 212 | ] 213 | }, 214 | { 215 | "name": "WebExPert - ColorScheme", 216 | "details": "https://github.com/matiaspub/WebExPertColorScheme", 217 | "labels": ["color scheme"], 218 | "releases": [ 219 | { 220 | "sublime_text": "*", 221 | "branch": "master" 222 | } 223 | ] 224 | }, 225 | { 226 | "name": "WebFocus", 227 | "details": "https://github.com/sdurette/SublimeWebFocus", 228 | "labels": ["language syntax"], 229 | "releases": [ 230 | { 231 | "sublime_text": "*", 232 | "branch": "master" 233 | } 234 | ] 235 | }, 236 | { 237 | "name": "WebFont", 238 | "details": "https://github.com/WebFont/webfont", 239 | "releases": [ 240 | { 241 | "sublime_text": ">=3000", 242 | "tags": true 243 | } 244 | ] 245 | }, 246 | { 247 | "name": "WebGLCompletions", 248 | "details": "https://github.com/katsew/WebGLCompletions", 249 | "labels": ["auto-complete", "snippets"], 250 | "releases": [ 251 | { 252 | "sublime_text": "*", 253 | "tags": true 254 | } 255 | ] 256 | }, 257 | { 258 | "name": "WebHare", 259 | "details": "https://github.com/WebHare/sublime-package", 260 | "labels": ["language syntax"], 261 | "releases": [ 262 | { 263 | "sublime_text": ">=3092", 264 | "platforms": ["osx", "linux"], 265 | "tags": true 266 | } 267 | ] 268 | }, 269 | { 270 | "name": "WebIDL", 271 | "details": "https://github.com/queengooborg/WebIDL-Sublime", 272 | "labels": ["language syntax", "webidl"], 273 | "releases": [ 274 | { 275 | "sublime_text": ">=3092", 276 | "tags": true 277 | } 278 | ] 279 | }, 280 | { 281 | "name": "Webloader", 282 | "details": "https://github.com/rozsahegyi/sublime-webloader", 283 | "releases": [ 284 | { 285 | "sublime_text": "<3000", 286 | "branch": "master" 287 | } 288 | ] 289 | }, 290 | { 291 | "name": "WebOS", 292 | "details": "https://github.com/Tenzer/WebOS", 293 | "releases": [ 294 | { 295 | "sublime_text": ">=3000", 296 | "tags": true 297 | } 298 | ] 299 | }, 300 | { 301 | "name": "WebSuite", 302 | "details": "https://github.com/bthorben/WebSuite", 303 | "releases": [ 304 | { 305 | "sublime_text": "<3000", 306 | "branch": "master" 307 | } 308 | ] 309 | }, 310 | { 311 | "name": "WeexTemplate", 312 | "details": "https://github.com/devilthrone/WeexTemplate", 313 | "labels": ["language syntax"], 314 | "releases": [ 315 | { 316 | "sublime_text": "*", 317 | "tags": true 318 | } 319 | ] 320 | }, 321 | { 322 | "name": "WEOML Syntax", 323 | "details": "https://github.com/weo-media/WEOML", 324 | "labels": ["weo", "keys", "language syntax"], 325 | "releases": [ 326 | { 327 | "sublime_text": ">=3092", 328 | "tags": true 329 | } 330 | ] 331 | }, 332 | { 333 | "name": "Wget", 334 | "details": "https://github.com/Oblongmana/Sublime-Wget", 335 | "releases": [ 336 | { 337 | "sublime_text": ">=3000", 338 | "tags": true 339 | } 340 | ] 341 | }, 342 | { 343 | "name": "WGSL", 344 | "details": "https://github.com/relrelb/sublime-wgsl", 345 | "labels": ["wgsl", "language syntax"], 346 | "releases": [ 347 | { 348 | "sublime_text": "*", 349 | "tags": true 350 | } 351 | ] 352 | }, 353 | { 354 | "details": "https://github.com/matiaspub/WheelChanger", 355 | "releases": [ 356 | { 357 | "sublime_text": "<3000", 358 | "branch": "master" 359 | } 360 | ] 361 | }, 362 | { 363 | "name": "Whiley", 364 | "details": "https://github.com/Whiley/WhileySyntaxBundle", 365 | "labels": ["language syntax"], 366 | "releases": [ 367 | { 368 | "sublime_text": ">=3092", 369 | "tags": true 370 | } 371 | ] 372 | }, 373 | { 374 | "name": "White Night Color Scheme", 375 | "details": "https://github.com/strongliang/WhiteNight.tmTheme", 376 | "labels": ["color scheme"], 377 | "releases": [ 378 | { 379 | "sublime_text": "*", 380 | "branch": "master" 381 | } 382 | ] 383 | }, 384 | { 385 | "name": "Whitelines", 386 | "details": "https://github.com/TEParsons/Whitelines", 387 | "labels": ["colour scheme", "color scheme", "stationery", "light", "orange", "grey", "silver"], 388 | "releases": [ 389 | { 390 | "sublime_text": ">=3149", 391 | "tags": true 392 | } 393 | ] 394 | }, 395 | { 396 | "name": "Whitespace Diff Trim", 397 | "details": "https://github.com/swenson/sublime_whitespace", 398 | "releases": [ 399 | { 400 | "sublime_text": "<3000", 401 | "branch": "master" 402 | } 403 | ] 404 | }, 405 | { 406 | "name": "Whitespace Removal", 407 | "details": "https://github.com/Melodatron/WhitespaceRemoval-Sublime", 408 | "releases": [ 409 | { 410 | "sublime_text": "*", 411 | "tags": true 412 | } 413 | ] 414 | }, 415 | { 416 | "name": "Whitespaces", 417 | "details": "https://github.com/gorte/ST2-Whitespaces", 418 | "releases": [ 419 | { 420 | "sublime_text": "<3000", 421 | "branch": "master" 422 | } 423 | ] 424 | }, 425 | { 426 | "name": "WhizzML", 427 | "details": "https://github.com/whizzml/whizzml-sublime", 428 | "labels": ["auto-complete", "language syntax", "machine learning"], 429 | "releases": [ 430 | { 431 | "sublime_text": ">=3092", 432 | "tags": true 433 | } 434 | ] 435 | }, 436 | { 437 | "name": "WhoCalled Function Finder", 438 | "details": "https://bitbucket.org/rablador/whocalled", 439 | "releases": [ 440 | { 441 | "sublime_text": "*", 442 | "branch": "develop" 443 | } 444 | ] 445 | }, 446 | { 447 | "name": "WhooshSearch", 448 | "details": "https://github.com/rokartnaz/WhooshSearch", 449 | "releases": [ 450 | { 451 | "sublime_text": ">=3000", 452 | "tags": true 453 | } 454 | ] 455 | }, 456 | { 457 | "name": "Wiggle", 458 | "details": "https://github.com/jarretth/Wiggle", 459 | "releases": [ 460 | { 461 | "sublime_text": "<3000", 462 | "branch": "master" 463 | } 464 | ] 465 | }, 466 | { 467 | "name": "Wiki", 468 | "details": "https://github.com/PogiNate/SublimeWiki", 469 | "labels": ["language syntax"], 470 | "releases": [ 471 | { 472 | "sublime_text": "<3000", 473 | "branch": "master" 474 | } 475 | ] 476 | }, 477 | { 478 | "name": "Wild Cherry", 479 | "details": "https://github.com/mashaal/wild-cherry", 480 | "labels": ["theme", "color scheme"], 481 | "releases": [ 482 | { 483 | "sublime_text": "*", 484 | "tags": true 485 | } 486 | ] 487 | }, 488 | { 489 | "name": "Wildlife Color Scheme", 490 | "details": "https://github.com/tushortz/wildlife", 491 | "labels": ["color scheme"], 492 | "releases": [ 493 | { 494 | "sublime_text": "*", 495 | "tags": true 496 | } 497 | ] 498 | }, 499 | { 500 | "name": "Wildlife gutter theme", 501 | "details": "https://github.com/tushortz/Wildlife-gutter-theme", 502 | "labels": ["linting"], 503 | "releases": [ 504 | { 505 | "sublime_text": "*", 506 | "tags": true 507 | } 508 | ] 509 | }, 510 | { 511 | "name": "Winamp Skin Developer", 512 | "details": "https://github.com/idleberg/sublime-winamp-skin-dev", 513 | "labels": ["auto-complete"], 514 | "releases": [ 515 | { 516 | "sublime_text": "*", 517 | "tags": true 518 | } 519 | ] 520 | }, 521 | { 522 | "name": "Window Mode", 523 | "details": "https://github.com/rwols/WindowMode", 524 | "labels": ["utilities", "window", "status bar"], 525 | "releases": [ 526 | { 527 | "sublime_text": ">=3000", 528 | "tags": true 529 | } 530 | ] 531 | }, 532 | { 533 | "details": "https://github.com/SublimeText/WinMerge", 534 | "releases": [ 535 | { 536 | "sublime_text": "*", 537 | "platforms": ["windows"], 538 | "branch": "master" 539 | } 540 | ] 541 | }, 542 | { 543 | "name": "WinSCP", 544 | "details": "https://github.com/thecotne/sublime-WinSCP", 545 | "releases": [ 546 | { 547 | "sublime_text": "*", 548 | "tags": true 549 | } 550 | ] 551 | }, 552 | { 553 | "name": "Wisedu TrunPage Snippets", 554 | "details": "https://github.com/bywwcnll/wisedu", 555 | "releases": [ 556 | { 557 | "sublime_text": "*", 558 | "tags": true 559 | } 560 | ] 561 | }, 562 | { 563 | "name": "Witch Hazel", 564 | "details": "https://github.com/theacodes/witchhazel-sublime", 565 | "releases": [ 566 | { 567 | "sublime_text": "*", 568 | "tags": true 569 | } 570 | ] 571 | }, 572 | { 573 | "name": "Witcher Script Syntax", 574 | "details": "https://github.com/FloStone/sublime-WitcherScript", 575 | "labels": ["language syntax"], 576 | "releases": [ 577 | { 578 | "sublime_text": "*", 579 | "tags": true 580 | } 581 | ] 582 | }, 583 | { 584 | "name": "With Python", 585 | "details": "https://github.com/nneonneo/sublime-replace-with-python", 586 | "labels": ["text manipulation", "utilities"], 587 | "releases": [ 588 | { 589 | "sublime_text": "*", 590 | "tags": true 591 | } 592 | ] 593 | }, 594 | { 595 | "name": "Witness color scheme", 596 | "details": "https://github.com/ryanpcmcquen/sublime_witness", 597 | "labels": ["color scheme"], 598 | "description": "An approximation of Jonathan Blow's Emacs color scheme for Sublime Text.", 599 | "author": "Ryan McQuen", 600 | "releases": [ 601 | { 602 | "sublime_text": ">=3170", 603 | "tags": true 604 | } 605 | ] 606 | }, 607 | { 608 | "name": "WLST", 609 | "details": "https://github.com/Joelith/sublime-wlst", 610 | "labels": ["language syntax"], 611 | "releases": [ 612 | { 613 | "sublime_text": "*", 614 | "tags": true 615 | } 616 | ] 617 | }, 618 | { 619 | "name": "WML", 620 | "details": "https://github.com/sevu/Sublime-WML", 621 | "labels": ["wesnoth", "markup", "language syntax"], 622 | "donate": "https://liberapay.com/Battle_for_Wesnoth", 623 | "description": "Adds support for the Wesnoth Markup Language.", 624 | "author": "Severin Glöckner", 625 | "releases": [ 626 | { 627 | "sublime_text": ">=3092", 628 | "tags": true 629 | } 630 | ] 631 | }, 632 | { 633 | "name": "Wolf Theme", 634 | "details": "https://github.com/wolf-theme/sublime", 635 | "labels": ["color scheme"], 636 | "releases": [ 637 | { 638 | "sublime_text": "*", 639 | "tags": true 640 | } 641 | ] 642 | }, 643 | { 644 | "name": "Wolfram Mathematica Notebook Viewer", 645 | "details": "https://github.com/chere005/Sublime-WolframMathematicaNotebookViewer", 646 | "releases": [ 647 | { 648 | "sublime_text": "*", 649 | "platforms": ["osx"], 650 | "tags": true 651 | } 652 | ] 653 | }, 654 | { 655 | "name": "WolframAlpha Lookup", 656 | "details": "https://github.com/PapaCharlie/WolframAlphaLookup/", 657 | "releases": [ 658 | { 659 | "sublime_text": "*", 660 | "tags": true 661 | } 662 | ] 663 | }, 664 | { 665 | "name": "WolframLanguage", 666 | "details": "https://github.com/WolframResearch/Sublime-WolframLanguage", 667 | "labels": ["language syntax"], 668 | "releases": [ 669 | { 670 | "sublime_text": ">=3103", 671 | "tags": true 672 | } 673 | ] 674 | }, 675 | { 676 | "name": "Wollok", 677 | "details": "https://github.com/uqbar-project/wollok-sublime", 678 | "labels": ["language syntax"], 679 | "releases": [ 680 | { 681 | "sublime_text": "*", 682 | "tags": true 683 | } 684 | ] 685 | }, 686 | { 687 | "name": "Wombat Theme", 688 | "details": "https://github.com/sheerun/sublime-wombat-theme", 689 | "releases": [ 690 | { 691 | "sublime_text": "*", 692 | "branch": "master" 693 | } 694 | ] 695 | }, 696 | { 697 | "name": "Wombatish color scheme", 698 | "details": "https://github.com/vlad-saling/wombatish", 699 | "labels": ["color scheme"], 700 | "releases": [ 701 | { 702 | "sublime_text": "*", 703 | "branch": "master" 704 | } 705 | ] 706 | }, 707 | { 708 | "name": "WooCommerce Autocomplete", 709 | "details": "https://github.com/kloon/WooCommerce-Sublime-Text-2-Auto-Completion", 710 | "releases": [ 711 | { 712 | "sublime_text": "*", 713 | "branch": "master" 714 | } 715 | ] 716 | }, 717 | { 718 | "name": "Word Count", 719 | "details": "https://github.com/shadax1/word_count", 720 | "releases": [ 721 | { 722 | "sublime_text": "*", 723 | "tags": true 724 | } 725 | ] 726 | }, 727 | { 728 | "name": "WordCompletion", 729 | "details": "https://github.com/schmave/Sublime-Word-Completion", 730 | "releases": [ 731 | { 732 | "sublime_text": ">=3000", 733 | "tags": true 734 | } 735 | ] 736 | }, 737 | { 738 | "details": "https://github.com/SublimeText/WordHighlight", 739 | "releases": [ 740 | { 741 | "sublime_text": "*", 742 | "branch": "master" 743 | } 744 | ] 745 | }, 746 | { 747 | "name": "WordingStatus", 748 | "details": "https://github.com/evandrocoan/WordingStatus", 749 | "author": "evandrocoan", 750 | "releases": [ 751 | { 752 | "sublime_text": ">=3000", 753 | "tags": true 754 | } 755 | ] 756 | }, 757 | { 758 | "name": "Wordless", 759 | "details": "https://github.com/welaika/Sublime-Text-Wordless", 760 | "releases": [ 761 | { 762 | "sublime_text": "*", 763 | "tags": true 764 | } 765 | ] 766 | }, 767 | { 768 | "name": "WordPress", 769 | "details": "https://github.com/purplefish32/sublime-text-2-wordpress", 770 | "releases": [ 771 | { 772 | "sublime_text": "*", 773 | "branch": "master" 774 | } 775 | ] 776 | }, 777 | { 778 | "name": "WordPress Code Reference", 779 | "details": "https://github.com/maheshwaghmare/sublime-wordpress-code-reference", 780 | "releases": [ 781 | { 782 | "sublime_text": "*", 783 | "tags": true 784 | } 785 | ] 786 | }, 787 | { 788 | "name": "WordPress Customizer", 789 | "details": "https://github.com/ahmadawais/Sublime-WP-Customizer", 790 | "labels": ["snippets", "customizer", "codex", "developer", "search", "wordpress"], 791 | "releases": [ 792 | { 793 | "sublime_text": "*", 794 | "tags": true 795 | } 796 | ] 797 | }, 798 | { 799 | "name": "WordPress Developer Resources", 800 | "details": "https://github.com/tripflex/sublime-wp-developer-resources", 801 | "labels": ["codex", "developer", "search", "wordpress"], 802 | "releases": [ 803 | { 804 | "sublime_text": "*", 805 | "branch": "master" 806 | } 807 | ] 808 | }, 809 | { 810 | "name": "WordPress Generate Salts", 811 | "details": "https://github.com/tatemz/WordPress-Generate-Salts", 812 | "releases": [ 813 | { 814 | "sublime_text": ">=3000", 815 | "branch": "master" 816 | } 817 | ] 818 | }, 819 | { 820 | "name": "WordPress Gutenburg Blocks Autocompletions", 821 | "author": "LTM", 822 | "details": "https://github.com/Skullmonkey/Wordpress-Gutenberg-Blocks-Autocomplete", 823 | "labels": ["auto-complete", "completions", "formatting", "wordpress"], 824 | "releases": [ 825 | { 826 | "sublime_text": "*", 827 | "tags": true 828 | } 829 | ] 830 | }, 831 | { 832 | "name": "WordPress Internationalization (i18n)", 833 | "details": "https://github.com/maheshwaghmare/sublime-wp-i18n", 834 | "releases": [ 835 | { 836 | "sublime_text": "*", 837 | "tags": true 838 | } 839 | ] 840 | }, 841 | { 842 | "name": "WordPress Readme to Markdown", 843 | "details": "https://github.com/claudiosanches/wordpress-readme-to-markdown", 844 | "releases": [ 845 | { 846 | "sublime_text": "*", 847 | "branch": "master" 848 | } 849 | ] 850 | }, 851 | { 852 | "name": "WordPress Salts", 853 | "details": "https://github.com/idleberg/sublime-wordpress-salts", 854 | "labels": ["wordpress", "development", "cryptography"], 855 | "releases": [ 856 | { 857 | "sublime_text": ">=3000", 858 | "tags": true 859 | } 860 | ] 861 | }, 862 | { 863 | "name": "WordPress Snippets", 864 | "details": "https://github.com/Dartui/sublime-wordpress-snippets", 865 | "labels": ["snippets", "wordpress"], 866 | "releases": [ 867 | { 868 | "sublime_text": "*", 869 | "tags": true 870 | } 871 | ] 872 | }, 873 | { 874 | "name": "WordpressDev", 875 | "details": "https://github.com/huntlyc/Sublime-Wordpress-Dev-Plugin", 876 | "releases": [ 877 | { 878 | "sublime_text": "*", 879 | "branch": "master" 880 | } 881 | ] 882 | }, 883 | { 884 | "name": "Worksheet", 885 | "details": "https://github.com/jcartledge/sublime-worksheet", 886 | "releases": [ 887 | { 888 | "sublime_text": "*", 889 | "tags": true 890 | } 891 | ] 892 | }, 893 | { 894 | "name": "World of Warcraft Macro Syntax", 895 | "details": "https://github.com/kigiri/wow-macro-syntax", 896 | "labels": ["language syntax"], 897 | "releases": [ 898 | { 899 | "sublime_text": ">=3084", 900 | "tags": true 901 | } 902 | ] 903 | }, 904 | { 905 | "name": "World of Warcraft TOC", 906 | "previous_names": ["World of Warcraft TOC file Syntax"], 907 | "details": "https://github.com/p3lim/sublime-toc", 908 | "labels": ["language syntax"], 909 | "releases": [ 910 | { 911 | "sublime_text": ">=3000", 912 | "tags": true 913 | } 914 | ] 915 | }, 916 | { 917 | "name": "World of Warcraft XML file Syntax", 918 | "details": "https://github.com/ascott18/WoWXMLForSublimeText", 919 | "labels": ["language syntax"], 920 | "releases": [ 921 | { 922 | "sublime_text": "*", 923 | "branch": "master" 924 | } 925 | ] 926 | }, 927 | { 928 | "name": "WoWDevelopment", 929 | "details": "https://github.com/Resike/WoWDevelopment", 930 | "releases": [ 931 | { 932 | "sublime_text": "*", 933 | "tags": true 934 | } 935 | ] 936 | }, 937 | { 938 | "name": "WP Keygen", 939 | "details": "https://github.com/iamfredric/Wordpress-keygen-Sublime-Text-plugin", 940 | "releases": [ 941 | { 942 | "sublime_text": "*", 943 | "tags": true 944 | } 945 | ] 946 | }, 947 | { 948 | "name": "WPCS Whitelist Flags", 949 | "details": "https://github.com/barryceelen/sublime-wpcs-whitelist-flags", 950 | "labels": ["wordpress", "wpcs", "wordpress coding standards"], 951 | "releases": [ 952 | { 953 | "sublime_text": "*", 954 | "tags": true 955 | } 956 | ] 957 | }, 958 | { 959 | "name": "wpseek WordPress Developer Assistant", 960 | "details": "https://github.com/wpseek/sublime-text-2-wpseek", 961 | "releases": [ 962 | { 963 | "sublime_text": "*", 964 | "branch": "master" 965 | } 966 | ] 967 | }, 968 | { 969 | "name": "WRAMPAssemblyLanguage", 970 | "details": "https://github.com/ZeddSerjeant/WrampAssemblyLanguange", 971 | "labels": ["language syntax", "assembly"], 972 | "releases": [ 973 | { 974 | "sublime_text": ">=3092", 975 | "tags": true 976 | } 977 | ] 978 | }, 979 | { 980 | "name": "Wrap", 981 | "details": "https://github.com/futureprogrammer360/Wrap", 982 | "releases": [ 983 | { 984 | "sublime_text": "*", 985 | "tags": true 986 | } 987 | ] 988 | }, 989 | { 990 | "name": "Wrap Plus", 991 | "details": "https://github.com/ehuss/Sublime-Wrap-Plus", 992 | "releases": [ 993 | { 994 | "sublime_text": "*", 995 | "tags": true 996 | } 997 | ] 998 | }, 999 | { 1000 | "name": "Wrap U", 1001 | "details": "https://github.com/manoelneto/wrap-u", 1002 | "releases": [ 1003 | { 1004 | "sublime_text": "*", 1005 | "branch": "master" 1006 | } 1007 | ] 1008 | }, 1009 | { 1010 | "name": "WrapAsYouType", 1011 | "details": "https://github.com/btrekkie/WrapAsYouType", 1012 | "releases": [ 1013 | { 1014 | "sublime_text": "*", 1015 | "tags": true 1016 | } 1017 | ] 1018 | }, 1019 | { 1020 | "name": "WrapIt", 1021 | "description": "Wrap Contents With Specific Code", 1022 | "details": "https://github.com/pykong/WrapIt", 1023 | "labels": ["text manipulation"], 1024 | "releases": [ 1025 | { 1026 | "sublime_text": ">=3000", 1027 | "tags": true 1028 | } 1029 | ] 1030 | }, 1031 | { 1032 | "name": "WrapStatement", 1033 | "details": "https://github.com/shagabutdinov/sublime-wrap-statement", 1034 | "donate": "https://github.com/shagabutdinov/sublime-enhanced/blob/master/readme-donations.md", 1035 | "labels": ["sublime-enhanced", "text manipulation"], 1036 | "releases": [ 1037 | { 1038 | "sublime_text": "*", 1039 | "branch": "master" 1040 | } 1041 | ] 1042 | }, 1043 | { 1044 | "name": "Wren", 1045 | "details": "https://github.com/munificent/wren-sublime", 1046 | "labels": ["language syntax"], 1047 | "releases": [ 1048 | { 1049 | "sublime_text": "*", 1050 | "tags": true 1051 | } 1052 | ] 1053 | }, 1054 | { 1055 | "details": "https://github.com/WrtApp/Writeapp", 1056 | "releases": [ 1057 | { 1058 | "sublime_text": "<3000", 1059 | "branch": "master" 1060 | } 1061 | ] 1062 | }, 1063 | { 1064 | "name": "WriteGooder", 1065 | "details": "https://github.com/duereg/sublime-write-gooder", 1066 | "releases": [ 1067 | { 1068 | "sublime_text": "*", 1069 | "branch": "master" 1070 | } 1071 | ] 1072 | }, 1073 | { 1074 | "name": "Writer Color Scheme", 1075 | "details": "https://github.com/tonsky/sublime-scheme-writer", 1076 | "donate": "https://www.patreon.com/tonsky", 1077 | "labels": ["color scheme"], 1078 | "releases": [ 1079 | { 1080 | "sublime_text": "*", 1081 | "tags": true 1082 | } 1083 | ] 1084 | }, 1085 | { 1086 | "name": "Writing Color Scheme", 1087 | "details": "https://github.com/kmisiunas/sublime-writing-color-scheme", 1088 | "labels": ["color scheme"], 1089 | "releases": [ 1090 | { 1091 | "sublime_text": "*", 1092 | "branch": "master" 1093 | } 1094 | ] 1095 | }, 1096 | { 1097 | "name": "Writing Style", 1098 | "details": "https://github.com/thedataking/SublimeWritingStyle", 1099 | "releases": [ 1100 | { 1101 | "sublime_text": "*", 1102 | "branch": "master" 1103 | } 1104 | ] 1105 | }, 1106 | { 1107 | "name": "WslBuild", 1108 | "details": "https://github.com/SublimeText/WslBuild", 1109 | "author": ["existentialmutt" , "DeathAxe"], 1110 | "labels": ["build system"], 1111 | "releases": [ 1112 | { 1113 | "sublime_text": ">=3176", 1114 | "platforms": ["windows"], 1115 | "tags": true 1116 | } 1117 | ] 1118 | }, 1119 | { 1120 | "name": "Wux Weapp Snippets", 1121 | "description": "Wux Weapp Snippets Plugin for Sublime Text 2/3.", 1122 | "details": "https://github.com/wux-weapp/wux-weapp-sublime-snippets", 1123 | "author": "skyvow", 1124 | "labels": ["snippets", "weapp", "wxml"], 1125 | "releases": [ 1126 | { 1127 | "sublime_text": "*", 1128 | "tags": true 1129 | } 1130 | ] 1131 | }, 1132 | { 1133 | "name": "WWB", 1134 | "details": "https://github.com/rusiv/WWB", 1135 | "labels": ["build system"], 1136 | "releases": [ 1137 | { 1138 | "sublime_text": ">=3092", 1139 | "tags": true 1140 | } 1141 | ] 1142 | }, 1143 | { 1144 | "name": "wxapp", 1145 | "details": "https://github.com/floydawong/wxapp", 1146 | "labels": ["language syntax", "wechat", "wxapp", "mini-program"], 1147 | "releases": [ 1148 | { 1149 | "sublime_text": "*", 1150 | "tags": true 1151 | } 1152 | ] 1153 | } 1154 | ] 1155 | } 1156 | -------------------------------------------------------------------------------- /repository/o.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "Oasis Theme", 6 | "details": "https://github.com/kodLite/Oasis-Theme", 7 | "labels": ["color scheme"], 8 | "releases": [ 9 | { 10 | "sublime_text": "*", 11 | "tags": true 12 | } 13 | ] 14 | }, 15 | { 16 | "name": "OAT Syntax", 17 | "details": "https://github.com/dylanmann/SublimeOatSyntaxHighlighting", 18 | "labels": ["language syntax"], 19 | "releases": [ 20 | { 21 | "sublime_text": "*", 22 | "tags": true 23 | } 24 | ] 25 | }, 26 | { 27 | "name": "ObjC2RubyMotion", 28 | "details": "https://github.com/kyamaguchi/SublimeObjC2RubyMotion", 29 | "releases": [ 30 | { 31 | "sublime_text": "*", 32 | "branch": "master" 33 | } 34 | ] 35 | }, 36 | { 37 | "name": "Object Pascal", 38 | "details": "https://github.com/avdotion/pascal-snippets", 39 | "labels": ["language syntax"], 40 | "releases": [ 41 | { 42 | "sublime_text": ">=3092", 43 | "tags": true 44 | } 45 | ] 46 | }, 47 | { 48 | "name": "Objective-C Autocompletion", 49 | "details": "https://github.com/oliverseal/objective-c-autocomplete-sublimetext", 50 | "releases": [ 51 | { 52 | "sublime_text": "*", 53 | "tags": true 54 | } 55 | ] 56 | }, 57 | { 58 | "name": "Oblivion Color Scheme", 59 | "details": "https://github.com/jbrooksuk/Oblivion", 60 | "labels": ["color scheme"], 61 | "releases": [ 62 | { 63 | "sublime_text": "*", 64 | "branch": "master" 65 | } 66 | ] 67 | }, 68 | { 69 | "name": "OCaml Autocompletion", 70 | "details": "https://github.com/whitequark/sublime-ocp-index", 71 | "releases": [ 72 | { 73 | "sublime_text": "*", 74 | "branch": "master" 75 | } 76 | ] 77 | }, 78 | { 79 | "name": "Occur", 80 | "details": "https://github.com/dreki/sublime-occur", 81 | "releases": [ 82 | { 83 | "sublime_text": ">=3000", 84 | "tags": true 85 | } 86 | ] 87 | }, 88 | { 89 | "name": "Oceanic Color Scheme", 90 | "details": "https://github.com/memco/Oceanic-tmTheme", 91 | "labels": ["color scheme"], 92 | "releases": [ 93 | { 94 | "sublime_text": "*", 95 | "branch": "master" 96 | } 97 | ] 98 | }, 99 | { 100 | "name": "Oceanic Next Color Scheme", 101 | "details": "https://github.com/voronianski/oceanic-next-color-scheme", 102 | "labels": ["color scheme", "javascript"], 103 | "releases": [ 104 | { 105 | "sublime_text": "*", 106 | "tags": true 107 | } 108 | ] 109 | }, 110 | { 111 | "name": "Oceanic Next Italic Color Scheme", 112 | "details": "https://github.com/Bloemert/oceanic-next-italic", 113 | "labels": ["color scheme"], 114 | "releases": [ 115 | { 116 | "sublime_text": "*", 117 | "tags": true 118 | } 119 | ] 120 | }, 121 | { 122 | "name": "Oceanic Primal Color Scheme", 123 | "details": "https://github.com/barlog-m/oceanic-primal-sublime", 124 | "labels": ["color scheme"], 125 | "releases": [ 126 | { 127 | "sublime_text": "*", 128 | "tags": true 129 | } 130 | ] 131 | }, 132 | { 133 | "name": "ocp-indent", 134 | "details": "https://github.com/bluepichu/sublime-text-ocp-indent", 135 | "releases": [ 136 | { 137 | "sublime_text": "*", 138 | "tags": true 139 | } 140 | ] 141 | }, 142 | { 143 | "name": "OctaveSupport", 144 | "details": "https://github.com/apjanke/OctaveSupport", 145 | "labels": ["language syntax", "snippets"], 146 | "releases": [ 147 | { 148 | "sublime_text": ">=3092", 149 | "tags": true 150 | } 151 | ] 152 | }, 153 | { 154 | "name": "Octo", 155 | "details": "https://github.com/mattmikolay/octo-sublime", 156 | "labels": ["language syntax", "chip8"], 157 | "releases": [ 158 | { 159 | "sublime_text": "*", 160 | "tags": true 161 | } 162 | ] 163 | }, 164 | { 165 | "name": "October Twig Highlighter", 166 | "details": "https://github.com/daftspunk/october-twig", 167 | "labels": [ 168 | "php", 169 | "octobercms", 170 | "october", 171 | "cms", 172 | "twig", 173 | "language syntax" 174 | ], 175 | "releases": [ 176 | { 177 | "sublime_text": ">=3092", 178 | "tags": true 179 | } 180 | ] 181 | }, 182 | { 183 | "name": "Octopress Snippets", 184 | "details": "https://github.com/yangsu/sublime-octopress", 185 | "labels": ["snippets"], 186 | "releases": [ 187 | { 188 | "sublime_text": "*", 189 | "tags": true 190 | } 191 | ] 192 | }, 193 | { 194 | "name": "Oddly", 195 | "details": "https://github.com/laktak/sublime-oddly", 196 | "releases": [ 197 | { 198 | "sublime_text": "*", 199 | "branch": "master" 200 | } 201 | ] 202 | }, 203 | { 204 | "name": "Odhin Color Scheme", 205 | "details": "https://gitlab.com/odhin-themes/sublime", 206 | "labels": ["color scheme", "odhin"], 207 | "releases": [ 208 | { 209 | "sublime_text": "*", 210 | "tags": true 211 | } 212 | ] 213 | }, 214 | { 215 | "name": "Odin", 216 | "details": "https://github.com/odin-lang/sublime-odin", 217 | "labels": ["odin", "language syntax"], 218 | "releases": [ 219 | { 220 | "sublime_text": ">=3092", 221 | "tags": true 222 | } 223 | ] 224 | }, 225 | { 226 | "name": "Odoo Snippets", 227 | "details": "https://github.com/Jarsa/Sublime-Odoo", 228 | "labels": ["snippets", "odoo"], 229 | "releases": [ 230 | { 231 | "sublime_text": "*", 232 | "tags": true 233 | } 234 | ] 235 | }, 236 | { 237 | "name": "Ogre Scripts Highlighting", 238 | "details": "https://github.com/TheSHEEEP/ST-OgreScripts", 239 | "labels": ["language syntax"], 240 | "releases": [ 241 | { 242 | "sublime_text": "*", 243 | "branch": "master" 244 | } 245 | ] 246 | }, 247 | { 248 | "name": "Ohdeung-eun", 249 | "details": "https://github.com/luavis/Ohdeung-eun", 250 | "labels": ["lorem", "hangul", "오등은"], 251 | "releases": [ 252 | { 253 | "sublime_text": "*", 254 | "branch": "master" 255 | } 256 | ] 257 | }, 258 | { 259 | "name": "OIL_TPL", 260 | "details": "https://github.com/ahmedhassan-eng/OIL_TPL", 261 | "labels": ["language syntax", "oil", "tpl", "osek", "automotive"], 262 | "releases": [ 263 | { 264 | "sublime_text": "*", 265 | "tags": true 266 | } 267 | ] 268 | }, 269 | { 270 | "name": "Okami – Adaptive Color Schemes", 271 | "details": "https://github.com/Rayraegah/okami", 272 | "labels": ["color scheme"], 273 | "releases": [ 274 | { 275 | "sublime_text": ">=3153", 276 | "tags": true 277 | } 278 | ] 279 | }, 280 | { 281 | "name": "Old-Style ASCII Property Lists", 282 | "details": "https://github.com/p4t5h3/ascii-property-lists-for-sublime-text", 283 | "labels": ["language syntax"], 284 | "releases": [ 285 | { 286 | "sublime_text": ">4107", 287 | "tags": true 288 | } 289 | ] 290 | }, 291 | { 292 | "name": "OLED Color Scheme", 293 | "details": "https://github.com/pavelrevak/OLED-color-scheme", 294 | "labels": ["color scheme"], 295 | "releases": [ 296 | { 297 | "sublime_text": "*", 298 | "tags": true 299 | } 300 | ] 301 | }, 302 | { 303 | "name": "OmniDocs", 304 | "details": "https://github.com/bordaigorl/sublime-omnidocs", 305 | "labels": ["search", "documentation"], 306 | "releases": [ 307 | { 308 | "sublime_text": "*", 309 | "tags": true 310 | } 311 | ] 312 | }, 313 | { 314 | "name": "OmniSharp", 315 | "details": "https://github.com/OmniSharp/omnisharp-sublime", 316 | "labels": ["auto-complete", "language syntax", "c#", ".net"], 317 | "releases": [ 318 | { 319 | "sublime_text": ">=3000", 320 | "tags": true 321 | } 322 | ] 323 | }, 324 | { 325 | "name": "OmnisStudioHighlighter", 326 | "details": "https://github.com/Frogli/OmnisStudioHighlighter", 327 | "labels": ["language syntax"], 328 | "releases": [ 329 | { 330 | "sublime_text": "*", 331 | "tags": true 332 | } 333 | ] 334 | }, 335 | { 336 | "name": "OmnisStudioIndenter", 337 | "details": "https://github.com/Frogli/OmnisStudioIndenter", 338 | "labels": ["language syntax"], 339 | "releases": [ 340 | { 341 | "sublime_text": "*", 342 | "tags": true 343 | } 344 | ] 345 | }, 346 | { 347 | "name": "On Save", 348 | "details": "https://github.com/wl879/SublimeOnSave/", 349 | "releases": [ 350 | { 351 | "sublime_text": ">=3000", 352 | "tags": true 353 | } 354 | ] 355 | }, 356 | { 357 | "name": "One Command Syntax Highlighter", 358 | "details": "https://github.com/yrsegal/OneCommandSublimeSyntax", 359 | "labels": ["minecraft", "language syntax"], 360 | "releases": [ 361 | { 362 | "sublime_text": "*", 363 | "tags": true 364 | } 365 | ] 366 | }, 367 | { 368 | "name": "One Dark Material - Theme", 369 | "details": "https://github.com/huszerldani/OneDarkMaterial", 370 | "releases": [ 371 | { 372 | "sublime_text": "*", 373 | "tags": true 374 | } 375 | ] 376 | }, 377 | { 378 | "name": "One Half Color Schemes", 379 | "details": "https://github.com/sonph/onehalf-tmtheme", 380 | "readme": "https://raw.githubusercontent.com/sonph/onehalf/master/README.md", 381 | "labels": ["color scheme"], 382 | "releases": [ 383 | { 384 | "sublime_text": "*", 385 | "tags": true 386 | } 387 | ] 388 | }, 389 | { 390 | "name": "OnlineSearch", 391 | "details": "https://github.com/rajeshvaya/sublime-online-searcher", 392 | "author": "Rajesh Vaya", 393 | "labels": ["search", "documentation"], 394 | "releases": [ 395 | { 396 | "sublime_text": "*", 397 | "tags": true 398 | } 399 | ] 400 | }, 401 | { 402 | "name": "OnlyCss Snippets", 403 | "details": "https://github.com/brunomarcel/sublime-onlycss-snippets", 404 | "author": "Bruno Marcel", 405 | "labels": ["snippets", "library", "css library", "css components"], 406 | "releases": [ 407 | { 408 | "sublime_text": "*", 409 | "tags": true 410 | } 411 | ] 412 | }, 413 | { 414 | "name": "OOJS", 415 | "details": "https://github.com/avenauche/OOJS", 416 | "labels": ["language syntax"], 417 | "releases": [ 418 | { 419 | "sublime_text": "*", 420 | "branch": "master" 421 | } 422 | ] 423 | }, 424 | { 425 | "name": "Opa", 426 | "details": "https://github.com/MLstate/OpaSublimeText", 427 | "releases": [ 428 | { 429 | "sublime_text": "<3000", 430 | "branch": "master" 431 | } 432 | ] 433 | }, 434 | { 435 | "name": "Open", 436 | "details": "https://github.com/danielfrg/sublime-open", 437 | "labels": ["file navigation"], 438 | "releases": [ 439 | { 440 | "sublime_text": "*", 441 | "tags": true 442 | } 443 | ] 444 | }, 445 | { 446 | "name": "Open DOI", 447 | "details": "https://github.com/crazytexer/open_doi", 448 | "releases": [ 449 | { 450 | "sublime_text": "*", 451 | "tags": true 452 | } 453 | ] 454 | }, 455 | { 456 | "name": "Open File in Current Folder", 457 | "details": "https://github.com/SublimeText/OpenFileInCurrentFolder", 458 | "labels": ["file navigation", "current folder"], 459 | "releases": [ 460 | { 461 | "sublime_text": "*", 462 | "tags": true 463 | } 464 | ] 465 | }, 466 | { 467 | "name": "Open Files In List", 468 | "details": "https://github.com/Wargazm/open_files_in_list", 469 | "labels": ["file open", "file navigation"], 470 | "releases": [ 471 | { 472 | "sublime_text": "*", 473 | "tags": true 474 | } 475 | ] 476 | }, 477 | { 478 | "name": "Open Folder", 479 | "details": "https://github.com/mikepfirrmann/openfolder", 480 | "labels": ["file navigation"], 481 | "releases": [ 482 | { 483 | "sublime_text": "*", 484 | "branch": "master" 485 | } 486 | ] 487 | }, 488 | { 489 | "name": "Open In Browser", 490 | "details": "https://github.com/vicke4/open_in_browser", 491 | "releases": [ 492 | { 493 | "sublime_text": ">=3118", 494 | "tags": true 495 | } 496 | ] 497 | }, 498 | { 499 | "name": "Open In Cursor", 500 | "details": "https://github.com/spencerchristensen/sublime-open-in-cursor", 501 | "labels": ["open files", "external editor", "cursor"], 502 | "releases": [ 503 | { 504 | "sublime_text": ">=4000", 505 | "platforms": ["osx"], 506 | "tags": true 507 | } 508 | ] 509 | }, 510 | { 511 | "name": "Open in Default Application", 512 | "details": "https://github.com/SublimeText/OpenDefaultApplication", 513 | "releases": [ 514 | { 515 | "sublime_text": ">=3000", 516 | "tags": true 517 | } 518 | ] 519 | }, 520 | { 521 | "name": "Open in Git Repository", 522 | "details": "https://github.com/arnellebalane/sublime-open-in-git-repository", 523 | "releases": [ 524 | { 525 | "sublime_text": ">=3000", 526 | "tags": true 527 | } 528 | ] 529 | }, 530 | { 531 | "name": "Open in Nautilus", 532 | "details": "https://github.com/glutanimate/sublime-open-in-nautilus", 533 | "labels": ["file navigation"], 534 | "releases": [ 535 | { 536 | "sublime_text": ">=3000", 537 | "platforms": "linux", 538 | "tags": true 539 | } 540 | ] 541 | }, 542 | { 543 | "name": "Open in Nemo", 544 | "details": "https://github.com/maddouri/sublime-open-in-nemo", 545 | "labels": ["file navigation"], 546 | "releases": [ 547 | { 548 | "sublime_text": ">=3000", 549 | "platforms": "linux", 550 | "tags": true 551 | } 552 | ] 553 | }, 554 | { 555 | "name": "Open in Relevant Window", 556 | "details": "https://github.com/dt/sublime-open-in-relevant-window", 557 | "labels": ["file navigation", "window management"], 558 | "releases": [ 559 | { 560 | "sublime_text": "*", 561 | "tags": true 562 | } 563 | ] 564 | }, 565 | { 566 | "name": "Open in Thunar", 567 | "details": "https://github.com/kernelp4nic/sublime-open-in-thunar", 568 | "releases": [ 569 | { 570 | "sublime_text": "*", 571 | "platforms": "linux", 572 | "branch": "master" 573 | } 574 | ] 575 | }, 576 | { 577 | "name": "Open in Total Commander", 578 | "details": "https://github.com/HackerBaloo/SublimeOpenInTotalCommander", 579 | "releases": [ 580 | { 581 | "sublime_text": "<3000", 582 | "branch": "master" 583 | } 584 | ] 585 | }, 586 | { 587 | "name": "Open project path by shortcut", 588 | "details": "https://github.com/Shagabutdinov/sublime-open-path", 589 | "releases": [ 590 | { 591 | "sublime_text": "<3000", 592 | "branch": "master" 593 | } 594 | ] 595 | }, 596 | { 597 | "name": "Open Recent Files", 598 | "details": "https://github.com/spadgos/sublime-OpenRecentFiles", 599 | "releases": [ 600 | { 601 | "sublime_text": "<3000", 602 | "branch": "master" 603 | } 604 | ] 605 | }, 606 | { 607 | "name": "Open Related", 608 | "details": "https://github.com/vojtajina/sublime-OpenRelated", 609 | "releases": [ 610 | { 611 | "sublime_text": ">=3000", 612 | "branch": "master" 613 | } 614 | ] 615 | }, 616 | { 617 | "name": "Open Search in a New Tab", 618 | "details": "https://github.com/everyonesdesign/OpenSearchInNewTab", 619 | "releases": [ 620 | { 621 | "sublime_text": ">=3000", 622 | "tags": true 623 | } 624 | ] 625 | }, 626 | { 627 | "name": "Open Search Result", 628 | "details": "https://github.com/abrookins/OpenSearchResult", 629 | "releases": [ 630 | { 631 | "sublime_text": "*", 632 | "branch": "master" 633 | } 634 | ] 635 | }, 636 | { 637 | "name": "Open Shading Language", 638 | "details": "https://github.com/roesti77/Sublime-Open-Shading-Language", 639 | "labels": ["language syntax"], 640 | "releases": [ 641 | { 642 | "sublime_text": "<3000", 643 | "branch": "master" 644 | } 645 | ] 646 | }, 647 | { 648 | "name": "Open TortoiseHg", 649 | "details": "https://github.com/SublimeText/OpenTortoiseHg", 650 | "releases": [ 651 | { 652 | "sublime_text": ">=3000", 653 | "tags": true 654 | } 655 | ] 656 | }, 657 | { 658 | "name": "Open URL", 659 | "details": "https://github.com/noahcoad/open-url", 660 | "labels": ["open paths", "open files", "shortcut", "power user", "web search", "url"], 661 | "releases": [ 662 | { 663 | "sublime_text": "<3000", 664 | "tags": "st2-" 665 | }, 666 | { 667 | "sublime_text": "3000 - 4049", 668 | "tags": "st3-" 669 | }, 670 | { 671 | "sublime_text": ">=4050", 672 | "tags": true 673 | } 674 | ] 675 | }, 676 | { 677 | "name": "Open With", 678 | "details": "https://github.com/j-martin/open-with-sublime", 679 | "labels": [ 680 | "file management", 681 | "open files", 682 | "external editor", 683 | "power user" 684 | ], 685 | "releases": [ 686 | { 687 | "sublime_text": ">=3000", 688 | "platforms": ["osx"], 689 | "tags": true 690 | } 691 | ] 692 | }, 693 | { 694 | "name": "OpenAI completion", 695 | "labels": ["auto-complete", "openai", "chatgpt", "llm", "agents"], 696 | "details": "https://github.com/yaroslavyaroslav/OpenAI-sublime-text", 697 | "donate": "https://github.com/sponsors/yaroslavyaroslav", 698 | "releases": [ 699 | { 700 | "sublime_text": ">=4050", 701 | "tags": true 702 | } 703 | ] 704 | }, 705 | { 706 | "name": "OpenBazelBUILDFile", 707 | "details": "https://github.com/macrael/OpenBazelBUILDFile", 708 | "labels": ["file navigation", "bazel"], 709 | "releases": [ 710 | { 711 | "sublime_text": "*", 712 | "tags": true 713 | } 714 | ] 715 | }, 716 | { 717 | "name": "OpenBSD PF conf syntax highlight", 718 | "details": "https://github.com/paukstis/sublimetext-packetfilter-syntax", 719 | "labels": ["language syntax"], 720 | "releases": [ 721 | { 722 | "sublime_text": "*", 723 | "tags": true 724 | } 725 | ] 726 | }, 727 | { 728 | "name": "Opencart Snippets and Completions", 729 | "details": "https://github.com/rafaelcruzpb/sublime-opencart-snippets", 730 | "releases": [ 731 | { 732 | "sublime_text": "*", 733 | "tags": true 734 | } 735 | ] 736 | }, 737 | { 738 | "name": "OpenCL", 739 | "details": "https://github.com/kbenzie/Sublime-OpenCL", 740 | "labels": ["language syntax"], 741 | "releases": [ 742 | { 743 | "sublime_text": "*", 744 | "tags": true 745 | } 746 | ] 747 | }, 748 | { 749 | "name": "OpenContextPath", 750 | "details": "https://github.com/mheinzler/OpenContextPath", 751 | "labels": [ 752 | "file navigation", 753 | "open files", 754 | "open paths", 755 | "context menu" 756 | ], 757 | "releases": [ 758 | { 759 | "sublime_text": "*", 760 | "tags": true 761 | } 762 | ] 763 | }, 764 | { 765 | "name": "OpenDSS", 766 | "details":"https://github.com/dparrini/sublime_opendss", 767 | "labels": ["auto-complete", "build system", "language syntax"], 768 | "releases": [ 769 | { 770 | "sublime_text": ">=3092", 771 | "tags": true 772 | } 773 | ] 774 | }, 775 | { 776 | "name": "OpenedFiles", 777 | "details": "https://github.com/qiray/SublimeOpenedFiles", 778 | "labels": ["file navigation", "file open", "sidebar"], 779 | "releases": [ 780 | { 781 | "sublime_text": ">3000", 782 | "tags": true 783 | } 784 | ] 785 | }, 786 | { 787 | "name": "OpenERP Snippets", 788 | "details": "https://github.com/drdran/Sublime-OpenERP", 789 | "labels": ["snippets", "openerp", "odoo"], 790 | "releases": [ 791 | { 792 | "sublime_text": "*", 793 | "branch": "master" 794 | } 795 | ] 796 | }, 797 | { 798 | "name": "OpenFGA", 799 | "details": "https://github.com/53v3n3d4/OpenFGA", 800 | "labels": ["language syntax", "openfga", "fga"], 801 | "releases": [ 802 | { 803 | "sublime_text": ">=4107", 804 | "tags": true 805 | } 806 | ] 807 | }, 808 | { 809 | "name": "OpenFileOverSSH", 810 | "details": "https://github.com/AncientRoman/SublimeOpenFileOverSSH", 811 | "labels": ["files", "file navigation", "file open", "remote", "ssh"], 812 | "releases": [ 813 | { 814 | "sublime_text": ">=4095", 815 | "tags": true 816 | } 817 | ] 818 | }, 819 | { 820 | "name": "OpenFilesLister", 821 | "details": "https://github.com/bantya/OpenFilesLister", 822 | "labels": ["shortcut", "open files", "files navigation", "files", "list"], 823 | "releases": [ 824 | { 825 | "sublime_text": ">=3000", 826 | "tags": true 827 | } 828 | ] 829 | }, 830 | { 831 | "name": "OpenFromPath", 832 | "details": "https://github.com/astronaughts/SublimeOpenFromPath", 833 | "releases": [ 834 | { 835 | "sublime_text": "<3000", 836 | "branch": "master" 837 | } 838 | ] 839 | }, 840 | { 841 | "name": "OpenGL Shading Language (GLSL)", 842 | "details": "https://github.com/euler0/sublime-glsl", 843 | "labels": ["language syntax"], 844 | "releases": [ 845 | { 846 | "sublime_text": "*", 847 | "tags": true 848 | } 849 | ] 850 | }, 851 | { 852 | "name": "OpenInBrowser", 853 | "details": "https://bitbucket.org/bteryek/openinbrowser", 854 | "homepage": "http://idevelopsolutions.com/OpenInBrowser", 855 | "labels": [ 856 | "browser", 857 | "open in browser", 858 | "refresh", 859 | "preview", 860 | "browser preview" 861 | ], 862 | "releases": [ 863 | { 864 | "sublime_text": "*", 865 | "tags": true 866 | } 867 | ] 868 | }, 869 | { 870 | "name": "OpenLastRPT", 871 | "details": "https://github.com/jonpas/Sublime-OpenLastRPT/", 872 | "labels": ["logs", "file open"], 873 | "releases": [ 874 | { 875 | "sublime_text": "*", 876 | "tags": true 877 | } 878 | ] 879 | }, 880 | { 881 | "name": "OpenPath", 882 | "details": "https://github.com/shagabutdinov/sublime-open-path", 883 | "donate": "https://github.com/shagabutdinov/sublime-enhanced/blob/master/readme-donations.md", 884 | "labels": ["sublime-enhanced", "file navigation"], 885 | "releases": [ 886 | { 887 | "sublime_text": "*", 888 | "branch": "master" 889 | } 890 | ] 891 | }, 892 | { 893 | "name": "OpenResty lua snippets", 894 | "details": "https://github.com/membphis/openresty_lua_snippets", 895 | "labels": ["openresty lua", "nginx", "ngx"], 896 | "releases": [ 897 | { 898 | "sublime_text": "*", 899 | "tags": true 900 | } 901 | ] 902 | }, 903 | { 904 | "name": "OpenScad", 905 | "details": "https://github.com/tralamazza/Sublime-OpenScad", 906 | "labels": ["language syntax"], 907 | "releases": [ 908 | { 909 | "sublime_text": "*", 910 | "branch": "master" 911 | } 912 | ] 913 | }, 914 | { 915 | "name": "OpenSees", 916 | "details": "https://github.com/bzarco/Sublime-OpenSees", 917 | "labels": [ 918 | "auto-complete", 919 | "build system", 920 | "language syntax", 921 | "structures", 922 | "finite element", 923 | "earthquake", 924 | "engineering" 925 | ], 926 | "releases": [ 927 | { 928 | "sublime_text": ">=3000", 929 | "tags": true 930 | } 931 | ] 932 | }, 933 | { 934 | "name": "OpenType Feature Bundle", 935 | "details": "https://github.com/brew/opentype-feature-bundle", 936 | "labels": ["language syntax"], 937 | "releases": [ 938 | { 939 | "sublime_text": "*", 940 | "tags": true 941 | } 942 | ] 943 | }, 944 | { 945 | "name": "OpenVPN", 946 | "details": "https://github.com/idleberg/sublime-openvpn", 947 | "labels": ["build system", "language syntax", "snippets"], 948 | "releases": [ 949 | { 950 | "sublime_text": ">=3103", 951 | "tags": true 952 | } 953 | ] 954 | }, 955 | { 956 | "name": "OpenWrt", 957 | "details": "https://github.com/xyu/sublime-openwrt", 958 | "labels": ["language syntax"], 959 | "releases": [ 960 | { 961 | "sublime_text": "*", 962 | "tags": true 963 | } 964 | ] 965 | }, 966 | { 967 | "name": "OPM (Orbital Parameter Message) Syntax Highlighting", 968 | "details": "https://github.com/RazerM/OPM-Syntax", 969 | "labels": ["language syntax"], 970 | "releases": [ 971 | { 972 | "sublime_text": "*", 973 | "tags": true 974 | } 975 | ] 976 | }, 977 | { 978 | "name": "OPUS", 979 | "details": "https://github.com/spywhere/OPUS", 980 | "labels": ["language syntax"], 981 | "releases": [ 982 | { 983 | "sublime_text": "*", 984 | "branch": "master" 985 | } 986 | ] 987 | }, 988 | { 989 | "name": "Oracle", 990 | "details": "https://github.com/Thom1729/sublime-oracle", 991 | "labels": ["language syntax"], 992 | "releases": [ 993 | { 994 | "sublime_text": ">=3092", 995 | "tags": true 996 | } 997 | ] 998 | }, 999 | { 1000 | "name": "Oracle_ORA", 1001 | "details": "https://github.com/MicMun/sublime-ora", 1002 | "labels": ["language syntax"], 1003 | "releases": [ 1004 | { 1005 | "sublime_text": ">=3092", 1006 | "tags": true 1007 | } 1008 | ] 1009 | }, 1010 | { 1011 | "name": "Orbit Color Scheme", 1012 | "details": "https://github.com/hawkw/Orbit", 1013 | "labels": ["color scheme"], 1014 | "releases": [ 1015 | { 1016 | "sublime_text": "*", 1017 | "tags": true 1018 | } 1019 | ] 1020 | }, 1021 | { 1022 | "name": "org_agenda", 1023 | "details": "https://github.com/robinchenyu/org_calendar", 1024 | "author": "robinchenyu", 1025 | "labels": ["language syntax"], 1026 | "releases": [ 1027 | { 1028 | "sublime_text": ">=3092", 1029 | "tags": true 1030 | } 1031 | ] 1032 | }, 1033 | { 1034 | "name": "OrgExtended", 1035 | "details": "https://github.com/ihdavids/orgextended", 1036 | "author": "Ian Davids", 1037 | "labels": ["language syntax", "org mode", "notes", "note taking", "authoring", "todo", "tasks"], 1038 | "releases": [ 1039 | { 1040 | "sublime_text": ">=3092", 1041 | "tags": true 1042 | } 1043 | ] 1044 | }, 1045 | { 1046 | "details": "https://github.com/SublimeText/Origami", 1047 | "releases": [ 1048 | { 1049 | "sublime_text": "<3000", 1050 | "tags": "st2-" 1051 | }, 1052 | { 1053 | "sublime_text": ">=3000", 1054 | "tags": true 1055 | } 1056 | ] 1057 | }, 1058 | { 1059 | "name": "OrigamiEmacs", 1060 | "details": "https://github.com/kevincobain2000/Origami-Emacs", 1061 | "releases": [ 1062 | { 1063 | "sublime_text": "*", 1064 | "branch": "master" 1065 | } 1066 | ] 1067 | }, 1068 | { 1069 | "name": "Outline", 1070 | "details": "https://github.com/warmdev/SublimeOutline", 1071 | "releases": [ 1072 | { 1073 | "sublime_text": ">=3000", 1074 | "tags": true 1075 | } 1076 | ] 1077 | }, 1078 | { 1079 | "name": "Outline Notes Publisher", 1080 | "details": "https://github.com/gnat/sublime-outline-notes-publisher", 1081 | "labels": ["html", "notes", "note taking", "authoring", "todo", "outline", "outliner", "list", "research", "indentation", "zettlekasten", "publishing", "export", "markdown", "wiki"], 1082 | "releases": [ 1083 | { 1084 | "sublime_text": ">=4050", 1085 | "tags": true 1086 | } 1087 | ] 1088 | }, 1089 | { 1090 | "name": "Outroot Color Schemes", 1091 | "details": "https://github.com/kdar/color-schemes", 1092 | "labels": ["color scheme"], 1093 | "releases": [ 1094 | { 1095 | "sublime_text": "*", 1096 | "branch": "master" 1097 | } 1098 | ] 1099 | }, 1100 | { 1101 | "name": "OverpassQL", 1102 | "details": "https://github.com/michaelblyons/SublimeSyntax-OverpassQL", 1103 | "labels": ["language syntax", "gis", "osm", "openstreetmap"], 1104 | "releases": [ 1105 | { 1106 | "sublime_text": ">=4077", 1107 | "tags": "version/st4077/" 1108 | } 1109 | ] 1110 | }, 1111 | { 1112 | "name": "OverrideEditSettingsDefaultContents", 1113 | "details": "https://github.com/evandrocoan/OverrideEditSettingsDefaultContents", 1114 | "releases": [ 1115 | { 1116 | "sublime_text": "*", 1117 | "tags": true 1118 | } 1119 | ] 1120 | }, 1121 | { 1122 | "name": "Overwatch Workshop Syntax Highlight", 1123 | "details": "https://github.com/Mike111177/Overwatch-Workshop-Syntax-Highlight", 1124 | "labels": ["language syntax", "overwatch"], 1125 | "releases": [ 1126 | { 1127 | "sublime_text": ">=3092", 1128 | "tags": true 1129 | } 1130 | ] 1131 | }, 1132 | { 1133 | "name": "OVH UI-Kit Snippets", 1134 | "details": "https://github.com/antleblanc/sublime-ovh-ui-kit-snippets", 1135 | "releases": [ 1136 | { 1137 | "sublime_text": "*", 1138 | "tags": true 1139 | } 1140 | ] 1141 | }, 1142 | { 1143 | "name": "Oz", 1144 | "details": "https://github.com/mozart/sublime-oz", 1145 | "readme": "https://raw.githubusercontent.com/mozart/sublime-oz/master/README.md", 1146 | "author": "Robert Koeninger", 1147 | "labels": ["build system", "language syntax", "snippets"], 1148 | "releases": [ 1149 | { 1150 | "sublime_text": ">=3092", 1151 | "tags": true 1152 | } 1153 | ] 1154 | } 1155 | ] 1156 | } 1157 | -------------------------------------------------------------------------------- /repository/i.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_version": "3.0.0", 3 | "packages": [ 4 | { 5 | "name": "I18n Rails", 6 | "details": "https://github.com/NicoSantangelo/sublime-text-i18n-rails", 7 | "releases": [ 8 | { 9 | "sublime_text": "<3000", 10 | "branch": "st2" 11 | }, 12 | { 13 | "sublime_text": ">=3000", 14 | "tags": true 15 | } 16 | ] 17 | }, 18 | { 19 | "name": "i3 wm", 20 | "details": "https://github.com/skk/i3wm-sublime", 21 | "labels": ["language syntax"], 22 | "releases": [ 23 | { 24 | "sublime_text": "*", 25 | "tags": true 26 | } 27 | ] 28 | }, 29 | { 30 | "name": "iA Writer", 31 | "details": "https://github.com/jbrooksuk/iawriter-markdown-sublime", 32 | "labels": ["markup", "utilities"], 33 | "releases": [ 34 | { 35 | "sublime_text": "*", 36 | "branch": "master" 37 | } 38 | ] 39 | }, 40 | { 41 | "name": "IAS", 42 | "details": "https://github.com/rmobis/sublime-ias", 43 | "labels": ["language syntax"], 44 | "releases": [ 45 | { 46 | "sublime_text": ">=3092", 47 | "tags": true 48 | } 49 | ] 50 | }, 51 | { 52 | "name": "iCalendar", 53 | "details": "https://github.com/kimsey0/iCalendar-sublime", 54 | "labels": ["language syntax"], 55 | "releases": [ 56 | { 57 | "sublime_text": "*", 58 | "tags": true 59 | } 60 | ] 61 | }, 62 | { 63 | "name": "IcedCoffeeScript", 64 | "details": "https://github.com/dhoelzgen/iced-coffee-script-tmbundle", 65 | "labels": ["language syntax"], 66 | "releases": [ 67 | { 68 | "sublime_text": "*", 69 | "branch": "master" 70 | } 71 | ] 72 | }, 73 | { 74 | "name": "IceWorld Color Scheme", 75 | "details": "https://github.com/chemdemo/IceWorld", 76 | "labels": ["color scheme"], 77 | "releases": [ 78 | { 79 | "sublime_text": "*", 80 | "branch": "master" 81 | } 82 | ] 83 | }, 84 | { 85 | "name": "Icon Fonts", 86 | "details": "https://github.com/idleberg/sublime-icon-fonts", 87 | "labels": ["snippets", "icon_fonts", "fonts"], 88 | "releases": [ 89 | { 90 | "sublime_text": "*", 91 | "tags": true 92 | } 93 | ] 94 | }, 95 | { 96 | "name": "Icon Fonts (Legacy)", 97 | "details": "https://github.com/idleberg/sublime-icon-fonts-legacy", 98 | "labels": ["snippets", "icon_fonts", "fonts"], 99 | "releases": [ 100 | { 101 | "sublime_text": "*", 102 | "tags": true 103 | } 104 | ] 105 | }, 106 | { 107 | "name": "iconfont snippets", 108 | "details": "https://github.com/badprint/ST-iconFont-snippets", 109 | "releases": [ 110 | { 111 | "sublime_text": "*", 112 | "tags": true 113 | } 114 | ] 115 | }, 116 | { 117 | "details": "https://github.com/chrisborrowdale/Idiomatic-CSS-Comments-Snippets", 118 | "labels": ["snippets"], 119 | "releases": [ 120 | { 121 | "sublime_text": "*", 122 | "branch": "master" 123 | } 124 | ] 125 | }, 126 | { 127 | "name": "IDL-Syntax", 128 | "details": "https://github.com/andik/IDL-Syntax", 129 | "labels": ["language syntax"], 130 | "releases": [ 131 | { 132 | "sublime_text": "*", 133 | "tags": true 134 | } 135 | ] 136 | }, 137 | { 138 | "name": "Idoc", 139 | "details": "https://github.com/tstirrat/Idoc-sublime", 140 | "labels": ["language syntax"], 141 | "releases": [ 142 | { 143 | "sublime_text": "*", 144 | "branch": "master" 145 | } 146 | ] 147 | }, 148 | { 149 | "name": "Idris Syntax", 150 | "details": "https://github.com/tellnobody1/sublime-idris-syntax", 151 | "labels": ["language syntax"], 152 | "releases": [ 153 | { 154 | "sublime_text": ">3092", 155 | "tags": true 156 | } 157 | ] 158 | }, 159 | { 160 | "name": "Idyll Lang Snippets", 161 | "details": "https://github.com/fhightower/idyll-snippets", 162 | "labels": ["snippets"], 163 | "releases": [ 164 | { 165 | "sublime_text": "*", 166 | "tags": true 167 | } 168 | ] 169 | }, 170 | { 171 | "name": "Idyll-Syntax", 172 | "details": "https://github.com/idyll-lang/idyll-sublime-syntax-highlighter", 173 | "homepage": "https://idyll-lang.org/", 174 | "labels": ["language syntax"], 175 | "releases": [ 176 | { 177 | "sublime_text": ">=3092", 178 | "tags": true 179 | } 180 | ] 181 | }, 182 | { 183 | "name": "IFJCode2017-syntax-highlight", 184 | "details": "https://github.com/SonyPony/IFJCode2017-syntax-highlight", 185 | "labels": ["language syntax"], 186 | "releases": [ 187 | { 188 | "sublime_text": "*", 189 | "tags": true 190 | } 191 | ] 192 | }, 193 | { 194 | "details": "https://github.com/palaniraja/iForce", 195 | "releases": [ 196 | { 197 | "sublime_text": "<3000", 198 | "branch": "master" 199 | } 200 | ] 201 | }, 202 | { 203 | "name": "Ignore Unable to Open File Error", 204 | "details": "https://github.com/everyonesdesign/IgnoreErrorUnableToOpenFile", 205 | "releases": [ 206 | { 207 | "sublime_text": ">=3000", 208 | "tags": true 209 | } 210 | ] 211 | }, 212 | { 213 | "name": "Iifefy", 214 | "details": "https://github.com/erquhart/sublime-iifefy", 215 | "labels": ["javascript", "utilities"], 216 | "releases": [ 217 | { 218 | "sublime_text": "*", 219 | "tags": true 220 | } 221 | ] 222 | }, 223 | { 224 | "name": "IJulia", 225 | "details": "https://github.com/quinnj/Sublime-IJulia", 226 | "labels": ["language syntax", "snippets", "julia", "ijulia"], 227 | "releases": [ 228 | { 229 | "sublime_text": "*", 230 | "branch": "master" 231 | } 232 | ] 233 | }, 234 | { 235 | "name": "Image Link Insertion", 236 | "details": "https://github.com/jtojnar/sublime-image-link-insertion", 237 | "author": "Jan Tojnar", 238 | "releases": [ 239 | { 240 | "sublime_text": ">=4075", 241 | "tags": true 242 | } 243 | ] 244 | }, 245 | { 246 | "name": "Image2Base64", 247 | "details": "https://github.com/tm-minty/sublime-text-2-image2base64", 248 | "labels": ["image manipulation", "base64", "image", "converting"], 249 | "releases": [ 250 | { 251 | "sublime_text": "*", 252 | "tags": true 253 | } 254 | ] 255 | }, 256 | { 257 | "name": "Image2tag", 258 | "details": "https://github.com/kawasako/sublime-plugin-Image2tag", 259 | "releases": [ 260 | { 261 | "sublime_text": ">=3000", 262 | "platforms": "osx", 263 | "tags": true 264 | } 265 | ] 266 | }, 267 | { 268 | "name": "ImageMagick", 269 | "details": "https://github.com/Kentzo/SublimeMagick", 270 | "author": "Ilya Kulakov", 271 | "releases": [ 272 | { 273 | "sublime_text": "*", 274 | "tags": true 275 | } 276 | ] 277 | }, 278 | { 279 | "name": "ImagePaste", 280 | "details": "https://github.com/robinchenyu/imagepaste", 281 | "author": "robinchenyu", 282 | "releases": [ 283 | { 284 | "sublime_text": ">=3000", 285 | "platforms":["windows", "linux"], 286 | "tags": true 287 | } 288 | ] 289 | }, 290 | { 291 | "name": "ImagePreview", 292 | "description": "The Sublime Text image previewing plugin", 293 | "labels": ["hover", "image", "preview", "file", "url"], 294 | "details": "https://github.com/alvesjtiago/hover-preview", 295 | "releases": [ 296 | { 297 | "sublime_text": ">=3124", 298 | "tags": true 299 | } 300 | ] 301 | }, 302 | { 303 | "name": "Imaginarium", 304 | "details": "https://github.com/ethanrobison/imaginarium_sublimesyntax", 305 | "description": "Syntax highlighting for Imaginarium", 306 | "labels": ["language syntax"], 307 | "releases": [ 308 | { 309 | "sublime_text": ">=3092", 310 | "tags": true 311 | } 312 | ] 313 | }, 314 | { 315 | "name": "Imba", 316 | "details": "https://github.com/somebee/sublime-imba", 317 | "labels": ["language syntax"], 318 | "releases": [ 319 | { 320 | "sublime_text": "*", 321 | "tags": true 322 | } 323 | ] 324 | }, 325 | { 326 | "name": "img-placeholder", 327 | "details": "https://github.com/fisker/img-placeholder", 328 | "releases": [ 329 | { 330 | "sublime_text": "*", 331 | "tags": true 332 | } 333 | ] 334 | }, 335 | { 336 | "name": "imgHolder", 337 | "details": "https://github.com/pafnuty/imgHolder", 338 | "labels": ["completions", "css", "html"], 339 | "releases": [ 340 | { 341 | "sublime_text": "*", 342 | "tags": true 343 | } 344 | ] 345 | }, 346 | { 347 | "name": "ImpactJS", 348 | "details": "https://github.com/drhayes/sublime-impactjs", 349 | "labels": ["language syntax"], 350 | "releases": [ 351 | { 352 | "sublime_text": "*", 353 | "branch": "master" 354 | } 355 | ] 356 | }, 357 | { 358 | "name": "Import Cost", 359 | "details": "https://github.com/julianburr/sublime-import-cost", 360 | "labels": ["js", "npm", "webpack", "import-cost"], 361 | "releases": [ 362 | { 363 | "sublime_text": ">=3000", 364 | "platforms": ["osx", "windows"], 365 | "tags": true 366 | } 367 | ] 368 | }, 369 | { 370 | "name": "ImportFileNames", 371 | "details": "https://github.com/felixcatto/ImportFileNames", 372 | "releases": [ 373 | { 374 | "sublime_text": ">=4000", 375 | "tags": true 376 | } 377 | ] 378 | }, 379 | { 380 | "name": "ImportHelper", 381 | "details": "https://github.com/unlight/sublime-import-helper", 382 | "releases": [ 383 | { 384 | "sublime_text": ">=3000", 385 | "tags": true 386 | } 387 | ] 388 | }, 389 | { 390 | "name": "ImportJS", 391 | "details": "https://github.com/Galooshi/sublime-import-js", 392 | "releases": [ 393 | { 394 | "sublime_text": ">=3000", 395 | "platforms": "*", 396 | "tags": true 397 | } 398 | ] 399 | }, 400 | { 401 | "name": "ImprovedMacros", 402 | "details": "https://github.com/skuroda/ImprovedMacros", 403 | "releases": [ 404 | { 405 | "sublime_text": "*", 406 | "tags": true 407 | } 408 | ] 409 | }, 410 | { 411 | "details": "https://github.com/jbrooksuk/ImprovedSQL", 412 | "labels": ["language syntax", "sql"], 413 | "releases": [ 414 | { 415 | "sublime_text": "*", 416 | "branch": "master" 417 | } 418 | ] 419 | }, 420 | { 421 | "name": "ImsiEncoder", 422 | "details": "https://bitbucket.org/luisillo/imsiencoder", 423 | "releases": [ 424 | { 425 | "sublime_text": "*", 426 | "tags": true 427 | } 428 | ] 429 | }, 430 | { 431 | "name": "IMSwitchForVintage", 432 | "details": "https://github.com/zhongxingdou/IMSwitchForVintage-sublime", 433 | "releases": [ 434 | { 435 | "sublime_text": "*", 436 | "platforms": ["osx"], 437 | "tags": true 438 | } 439 | ] 440 | }, 441 | { 442 | "name": "InactivePanes", 443 | "description": "Dims visible but inactive panes in group views", 444 | "author": "FichteFoll", 445 | "labels": ["color scheme manipulation"], 446 | "details": "https://github.com/SublimeText/InactivePanes", 447 | "releases": [ 448 | { 449 | "sublime_text": "*", 450 | "tags": "v" 451 | } 452 | ] 453 | }, 454 | { 455 | "name": "Inc-Dec-Value", 456 | "details": "https://github.com/rmaksim/Sublime-Text-2-Inc-Dec-Value", 457 | "author": "Razumenko Maksim", 458 | "releases": [ 459 | { 460 | "sublime_text": "*", 461 | "branch": "master" 462 | } 463 | ] 464 | }, 465 | { 466 | "name": "Include Autocomplete", 467 | "details": "https://github.com/pieterverstraete/include_autocomplete", 468 | "releases": [ 469 | { 470 | "sublime_text": "*", 471 | "tags": true 472 | } 473 | ] 474 | }, 475 | { 476 | "name": "Incomprehensible Ex", 477 | "details": "https://github.com/barretov/Incomprehensible-ex", 478 | "author": "Victor Eduardo Barreto", 479 | "labels": ["extension", "convert", "txt", "doc", "docx", "xlsx", "pdf", "epub"], 480 | "releases": [ 481 | { 482 | "sublime_text": ">=3000", 483 | "tags": true 484 | } 485 | ] 486 | }, 487 | { 488 | "name": "Increment Decrement", 489 | "details": "https://github.com/cgjosephlee/increment_decrement", 490 | "author": "cgjosephlee", 491 | "releases": [ 492 | { 493 | "sublime_text": "*", 494 | "tags": true 495 | } 496 | ] 497 | }, 498 | { 499 | "name": "Increment Selection", 500 | "details": "https://github.com/yulanggong/IncrementSelection", 501 | "releases": [ 502 | { 503 | "sublime_text": "*", 504 | "branch": "master" 505 | } 506 | ] 507 | }, 508 | { 509 | "name": "IncrementalDiff", 510 | "details": "https://github.com/AmjadHD/sublime_incremental_diff", 511 | "labels": ["diff", "diff/merge"], 512 | "releases": [ 513 | { 514 | "sublime_text": ">=3200", 515 | "tags": true 516 | } 517 | ] 518 | }, 519 | { 520 | "name": "Incrementor", 521 | "details": "https://github.com/eBookArchitects/Incrementor", 522 | "releases": [ 523 | { 524 | "sublime_text": "<3000", 525 | "branch": "master" 526 | }, 527 | { 528 | "sublime_text": ">=3000", 529 | "base": "https://github.com/born2c0de/Incrementor", 530 | "branch": "master" 531 | } 532 | ] 533 | }, 534 | { 535 | "name": "Indent and braces", 536 | "description": "Indent selection and wrap it in braces.", 537 | "author": "Epskampie", 538 | "details": "https://github.com/Epskampie/sublime_indent_and_braces", 539 | "labels": ["text manipulation"], 540 | "releases": [ 541 | { 542 | "sublime_text": "*", 543 | "tags": true 544 | } 545 | ] 546 | }, 547 | { 548 | "name": "Indent Respectful Sort", 549 | "author": "Mustafa Nural", 550 | "details": "https://github.com/mvnural/sublime-indent-respectful-sort", 551 | "labels": ["sort", "indent"], 552 | "releases": [ 553 | { 554 | "sublime_text": "*", 555 | "tags": true 556 | } 557 | ] 558 | }, 559 | { 560 | "name": "Indent Size", 561 | "details": "https://github.com/socsieng/sublime-indent-size", 562 | "labels": ["indent", "tab", "size"], 563 | "releases": [ 564 | { 565 | "sublime_text": "*", 566 | "tags": true 567 | } 568 | ] 569 | }, 570 | { 571 | "name": "Indent To Parenthesis", 572 | "details": "https://github.com/rchl/IndentToParenthesis", 573 | "labels": ["indent", "align", "parenthesis", "bracket"], 574 | "releases": [ 575 | { 576 | "sublime_text": "*", 577 | "tags": true 578 | } 579 | ] 580 | }, 581 | { 582 | "name": "Indent XML", 583 | "details": "https://github.com/alek-sys/sublimetext_indentxml", 584 | "releases": [ 585 | { 586 | "sublime_text": "*", 587 | "branch": "master" 588 | } 589 | ] 590 | }, 591 | { 592 | "name": "Indentation Size Setting", 593 | "details": "https://github.com/Kronuz/IndentSize", 594 | "labels": ["indent", "tab", "size", "settings"], 595 | "releases": [ 596 | { 597 | "sublime_text": ">=3000", 598 | "tags": true 599 | } 600 | ] 601 | }, 602 | { 603 | "name": "IndentationNavigation", 604 | "details": "https://github.com/shagabutdinov/sublime-indentation-navigation", 605 | "donate": "https://github.com/shagabutdinov/sublime-enhanced/blob/master/readme-donations.md", 606 | "labels": ["sublime-enhanced", "file navigation"], 607 | "releases": [ 608 | { 609 | "sublime_text": "*", 610 | "branch": "master" 611 | } 612 | ] 613 | }, 614 | { 615 | "details": "https://github.com/SublimeText/IndentGuides", 616 | "releases": [ 617 | { 618 | "sublime_text": "<3000", 619 | "branch": "master" 620 | } 621 | ] 622 | }, 623 | { 624 | "name": "Indentor", 625 | "details": "https://github.com/omkarjc27/sublime_indentor", 626 | "labels": ["convert", "converting", "formatting", "indent", "language syntax", "scope"], 627 | "releases": [ 628 | { 629 | "sublime_text": "*", 630 | "tags": true 631 | } 632 | ] 633 | }, 634 | { 635 | "name": "IndentTips", 636 | "details": "https://github.com/QS20199/IndentTips_sublime_plugin", 637 | "author": "QSqiu", 638 | "releases": [ 639 | { 640 | "platforms": "*", 641 | "sublime_text": "*", 642 | "tags": true 643 | } 644 | ] 645 | }, 646 | { 647 | "name": "IndentToAllBrackets", 648 | "details": "https://github.com/BadStreff/IndentToAllBrackets", 649 | "labels": ["language syntax"], 650 | "releases": [ 651 | { 652 | "sublime_text": "*", 653 | "platforms": ["*"], 654 | "tags": true 655 | } 656 | ] 657 | }, 658 | { 659 | "name": "IndentX", 660 | "details": "https://github.com/socsieng/IndentX", 661 | "labels": ["convert", "converting", "formatting", "indent", "json", "xml", "yaml"], 662 | "releases": [ 663 | { 664 | "sublime_text": "*", 665 | "tags": true 666 | } 667 | ] 668 | }, 669 | { 670 | "name": "industrial-coding-theme", 671 | "details": "https://github.com/zaizupro/industrial-coding-theme", 672 | "labels": ["theme", "color scheme"], 673 | "releases": [ 674 | { 675 | "sublime_text": ">=3000", 676 | "tags": true 677 | } 678 | ] 679 | }, 680 | { 681 | "name": "Infinidat Plugin", 682 | "details": "https://github.com/Infinidat/sublime-infinidat", 683 | "releases": [ 684 | { 685 | "sublime_text": ">=3000", 686 | "tags": true 687 | } 688 | ] 689 | }, 690 | { 691 | "name": "Inform 6", 692 | "details": "https://github.com/yandexx/sublime-inform6", 693 | "labels": ["language syntax"], 694 | "releases": [ 695 | { 696 | "sublime_text": "*", 697 | "tags": true 698 | } 699 | ] 700 | }, 701 | { 702 | "name": "INI", 703 | "details": "https://github.com/jwortmann/ini-syntax", 704 | "labels": ["language syntax"], 705 | "releases": [ 706 | { 707 | "base": "https://github.com/clintberry/sublime-text-2-ini", 708 | "sublime_text": "<3092", 709 | "branch": "master" 710 | }, 711 | { 712 | "sublime_text": ">=3092", 713 | "tags": true 714 | } 715 | ] 716 | }, 717 | { 718 | "name": "Initializr", 719 | "details": "https://github.com/drinks/sublime-initializr", 720 | "labels": ["automation", "utilities"], 721 | "releases": [ 722 | { 723 | "sublime_text": "*", 724 | "tags": true 725 | } 726 | ] 727 | }, 728 | { 729 | "name": "Inline Calculator", 730 | "details": "https://github.com/sahibalejandro/inline-calculator", 731 | "releases": [ 732 | { 733 | "sublime_text": "<3000", 734 | "branch": "master" 735 | } 736 | ] 737 | }, 738 | { 739 | "name": "Inline Fold", 740 | "details": "https://github.com/predragnikolic/InlineFold", 741 | "releases": [ 742 | { 743 | "sublime_text": ">=4070", 744 | "tags": true 745 | } 746 | ] 747 | }, 748 | { 749 | "name": "Inline Python", 750 | "details": "https://github.com/apiad/Sublime-InlinePython", 751 | "releases": [ 752 | { 753 | "sublime_text": ">=3000", 754 | "tags": true 755 | } 756 | ] 757 | }, 758 | { 759 | "name": "InlineOutline", 760 | "details": "https://github.com/kaste/InlineOutline", 761 | "releases": [ 762 | { 763 | "sublime_text": ">=4132", 764 | "tags": true 765 | } 766 | ] 767 | }, 768 | { 769 | "name": "Inno Setup", 770 | "details": "https://github.com/idleberg/sublime-innosetup", 771 | "labels": ["language syntax", "build system", "inno setup", "innosetup"], 772 | "releases": [ 773 | { 774 | "sublime_text": "<3103", 775 | "tags": "st2-" 776 | }, 777 | { 778 | "sublime_text": ">=3103", 779 | "tags": "st3-" 780 | } 781 | ] 782 | }, 783 | { 784 | "name": "InputArgs", 785 | "details": "https://github.com/bilalba/InputArgs", 786 | "labels": ["input", "arguments", "build system"], 787 | "releases": [ 788 | { 789 | "sublime_text": "*", 790 | "tags": true 791 | } 792 | ] 793 | }, 794 | { 795 | "name": "InQlik-Tools", 796 | "details": "https://github.com/inqlik/inqlik-tools", 797 | "labels": ["language syntax", "build system"], 798 | "releases": [ 799 | { 800 | "sublime_text": ">=3000", 801 | "tags": true 802 | } 803 | ] 804 | }, 805 | { 806 | "name": "Insert Callback", 807 | "details": "https://github.com/daguej/sublime-insertcallback", 808 | "labels": ["snippets", "text manipulation", "javascript"], 809 | "releases": [ 810 | { 811 | "sublime_text": "*", 812 | "tags": true 813 | } 814 | ] 815 | }, 816 | { 817 | "name": "Insert Equation", 818 | "details": "https://github.com/bordaigorl/sublime-inserteq", 819 | "labels": ["latex", "math", "markdown"], 820 | "releases": [ 821 | { 822 | "sublime_text": ">=3000", 823 | "tags": true 824 | } 825 | ] 826 | }, 827 | { 828 | "name": "Insert Nums", 829 | "author": ["jbrooksuk", "FichteFoll"], 830 | "details": "https://github.com/SublimeText/InsertNums", 831 | "labels": ["automation", "utilities", "text manipulation"], 832 | "releases": [ 833 | { 834 | "sublime_text": "*", 835 | "tags": true 836 | } 837 | ] 838 | }, 839 | { 840 | "name": "Insert to Column", 841 | "details": "https://github.com/abluescarab/sublime_insert-to-column", 842 | "labels": ["formatting", "text manipulation"], 843 | "releases": [ 844 | { 845 | "sublime_text": ">=3000", 846 | "tags": true 847 | } 848 | ] 849 | }, 850 | { 851 | "name": "InsertDate", 852 | "description": "Insert the current date/time according to given formatting or timezone", 853 | "labels": ["text manipulation"], 854 | "details": "https://github.com/FichteFoll/InsertDate", 855 | "releases": [ 856 | { 857 | "sublime_text": "*", 858 | "tags": "v" 859 | } 860 | ] 861 | }, 862 | { 863 | "name": "Inspired GitHub Color Scheme", 864 | "details": "https://github.com/sethlopezme/InspiredGitHub.tmtheme", 865 | "labels": ["color scheme"], 866 | "releases": [ 867 | { 868 | "sublime_text": ">=3000", 869 | "tags": true 870 | } 871 | ] 872 | }, 873 | { 874 | "name": "Instacode", 875 | "details": "https://github.com/lindskogen/InstacodeSublime", 876 | "releases": [ 877 | { 878 | "sublime_text": ">=3000", 879 | "branch": "master" 880 | }, 881 | { 882 | "sublime_text": "<3000", 883 | "branch": "st2" 884 | } 885 | ] 886 | }, 887 | { 888 | "name": "Intel HEX", 889 | "details": "https://github.com/seppestas/intel-hex-syntax", 890 | "labels": ["language syntax", "hexadecimal"], 891 | "releases": [ 892 | { 893 | "sublime_text": "*", 894 | "tags": true 895 | } 896 | ] 897 | }, 898 | { 899 | "name": "Intellekt", 900 | "details": "https://github.com/tushortz/intellekt", 901 | "labels": ["auto-complete", "completions", "help", "hint", "java", "python"], 902 | "author":"Taiwo Kareem", 903 | "releases": [ 904 | { 905 | "sublime_text": ">=3000", 906 | "tags": true 907 | } 908 | ] 909 | }, 910 | { 911 | "name": "IntelliDocs", 912 | "details": "https://github.com/shortcutme/Sublime-IntelliDocs", 913 | "labels": ["auto-complete", "completions", "help", "hint", "php", "python"], 914 | "releases": [ 915 | { 916 | "sublime_text": ">=3000", 917 | "tags": true 918 | } 919 | ] 920 | }, 921 | { 922 | "name": "Intellitip", 923 | "details": "https://github.com/jbrooksuk/Intellitip", 924 | "labels": ["auto-complete", "completions", "help", "hint", "php"], 925 | "releases": [ 926 | { 927 | "sublime_text": ">=3070", 928 | "tags": true 929 | } 930 | ] 931 | }, 932 | { 933 | "name": "INTENS Language", 934 | "details": "https://github.com/anticultist/sublime-intenslang", 935 | "labels": ["language syntax"], 936 | "releases": [ 937 | { 938 | "sublime_text": ">=3103", 939 | "tags": true 940 | } 941 | ] 942 | }, 943 | { 944 | "name": "Interactive Data Language (IDL)", 945 | "details": "https://github.com/cschreib/sublime-idl", 946 | "labels": ["language syntax"], 947 | "releases": [ 948 | { 949 | "sublime_text": ">=3114", 950 | "tags": true 951 | } 952 | ] 953 | }, 954 | { 955 | "name": "Interactivity", 956 | "details": "https://github.com/ichichikin/sublime-plugin-interactivity", 957 | "releases": [ 958 | { 959 | "sublime_text": ">=3000", 960 | "tags": true 961 | } 962 | ] 963 | }, 964 | { 965 | "name": "International Keymap", 966 | "details": "https://bitbucket.org/hxss/internationalkeymap", 967 | "releases": [ 968 | { 969 | "sublime_text": "*", 970 | "tags": true 971 | } 972 | ] 973 | }, 974 | { 975 | "name": "Internet Search", 976 | "details": "https://github.com/krasun/SublimeInternetSearch", 977 | "releases": [ 978 | { 979 | "sublime_text": "*", 980 | "branch": "master" 981 | } 982 | ] 983 | }, 984 | { 985 | "name": "Internetstorm Bold Color Scheme", 986 | "details": "https://github.com/EddyVinck/Internetstorm", 987 | "labels": ["color scheme", "colour scheme"], 988 | "releases": [ 989 | { 990 | "sublime_text": "*", 991 | "tags": true 992 | } 993 | ] 994 | }, 995 | { 996 | "name": "Interpol", 997 | "details": "https://github.com/kode4food/interpol-sublime", 998 | "labels": ["language syntax"], 999 | "releases": [ 1000 | { 1001 | "sublime_text": "*", 1002 | "tags": true 1003 | } 1004 | ] 1005 | }, 1006 | { 1007 | "name": "InterSystems Cache", 1008 | "details": "https://github.com/brandonhorst/SublimeCache", 1009 | "labels": ["language syntax"], 1010 | "releases": [ 1011 | { 1012 | "sublime_text": ">=3000", 1013 | "tags": true 1014 | } 1015 | ] 1016 | }, 1017 | { 1018 | "name": "Invader Zim Color Scheme", 1019 | "details": "https://github.com/gnat/sublime-invader-zim", 1020 | "labels": ["color scheme", "colour scheme", "dark", "theme"], 1021 | "releases": [ 1022 | { 1023 | "sublime_text": ">=4000", 1024 | "tags": true 1025 | } 1026 | ] 1027 | }, 1028 | { 1029 | "name": "Invert Selection", 1030 | "details": "https://github.com/vontio/sublime-invert-selection", 1031 | "labels": ["text manipulation"], 1032 | "releases": [ 1033 | { 1034 | "sublime_text": "*", 1035 | "branch": "master" 1036 | } 1037 | ] 1038 | }, 1039 | { 1040 | "name": "Invisible Tabs Spaces Switcher", 1041 | "details": "https://github.com/iynere/InvisibleTabsSpacesSwitcher", 1042 | "labels": ["formatting", "text manipulation"], 1043 | "releases": [ 1044 | { 1045 | "sublime_text": ">=3000", 1046 | "tags": true 1047 | } 1048 | ] 1049 | }, 1050 | { 1051 | "name": "Io Language", 1052 | "details": "https://github.com/yangsu/sublime-io", 1053 | "labels": ["language syntax"], 1054 | "releases": [ 1055 | { 1056 | "sublime_text": "*", 1057 | "tags": true 1058 | } 1059 | ] 1060 | }, 1061 | { 1062 | "name": "Ion Syntax", 1063 | "details": "https://github.com/SevenO2/ion-sublime-syntax", 1064 | "labels": ["language syntax"], 1065 | "releases": [ 1066 | { 1067 | "sublime_text": ">=3092", 1068 | "tags": true 1069 | } 1070 | ] 1071 | }, 1072 | { 1073 | "name": "Ionic 2", 1074 | "details": "https://github.com/Bernardoow/Ionic-2-Sublime-Package", 1075 | "labels": ["auto-complete", "completions", "snippets", "markup", "ionic"], 1076 | "releases": [ 1077 | { 1078 | "sublime_text": "*", 1079 | "tags": true 1080 | } 1081 | ] 1082 | }, 1083 | { 1084 | "name": "Ionic Framework Extended Autocomplete", 1085 | "details": "https://github.com/matheuscas/SublimeIonic", 1086 | "labels":["auto-complete", "completions", "ionic framework"], 1087 | "author":"Matheus Cardoso", 1088 | "releases": [ 1089 | { 1090 | "sublime_text": "*", 1091 | "tags": true 1092 | } 1093 | ] 1094 | }, 1095 | { 1096 | "name": "Ionic Framework Snippets", 1097 | "details": "https://github.com/imsingh/ionic-sublime-plugin", 1098 | "releases": [ 1099 | { 1100 | "sublime_text": "*", 1101 | "tags": true 1102 | } 1103 | ] 1104 | }, 1105 | { 1106 | "name": "Ionic Snippets", 1107 | "details": "https://github.com/TenthGeek/ionic-snippets-sublime-plugin", 1108 | "labels": ["snippets", "markup"], 1109 | "releases": [ 1110 | { 1111 | "sublime_text": "*", 1112 | "tags": true 1113 | } 1114 | ] 1115 | }, 1116 | { 1117 | "name": "iOpener", 1118 | "details": "https://github.com/rosshemsley/iOpener", 1119 | "labels": ["emacs", "file open", "open path"], 1120 | "releases": [ 1121 | { 1122 | "sublime_text": ">=3000", 1123 | "tags": true 1124 | } 1125 | ] 1126 | }, 1127 | { 1128 | "name": "iOS build system", 1129 | "details": "https://github.com/Swift-Next/iOS-build-sublime", 1130 | "labels": ["build system", "swift", "objective-c", "objective-c++"], 1131 | "releases": [ 1132 | { 1133 | "platforms": "osx", 1134 | "sublime_text": ">=4075", 1135 | "tags": true 1136 | } 1137 | ] 1138 | }, 1139 | { 1140 | "name": "IpAddress", 1141 | "details": "https://github.com/vovayatsyuk/sublime-ip-address", 1142 | "releases": [ 1143 | { 1144 | "sublime_text": ">=3000", 1145 | "tags": true 1146 | } 1147 | ] 1148 | }, 1149 | { 1150 | "name": "IPS BBCode", 1151 | "author": "LTM", 1152 | "details": "https://github.com/Skullmonkey/IPS-BBCode", 1153 | "labels": ["language syntax"], 1154 | "releases": [ 1155 | { 1156 | "sublime_text": "*", 1157 | "tags": true 1158 | } 1159 | ] 1160 | }, 1161 | { 1162 | "name": "IPS Package Manifest Syntax", 1163 | "details": "https://github.com/carsonoid/IPS-Pkg-Syntax", 1164 | "labels": ["language syntax", "markup"], 1165 | "releases": [ 1166 | { 1167 | "sublime_text": "*", 1168 | "tags": true 1169 | } 1170 | ] 1171 | }, 1172 | { 1173 | "name": "Ipynb Preview as Markdown", 1174 | "details": "https://github.com/valentinbarral/IpynbPreviewAsMarkdown", 1175 | "labels": ["formatting", "text manipulation"], 1176 | "releases": [ 1177 | { 1178 | "sublime_text": "*", 1179 | "tags": true 1180 | } 1181 | ] 1182 | }, 1183 | { 1184 | "name": "IPython Notebook", 1185 | "details": "https://github.com/maximsch2/SublimeIPythonNotebook", 1186 | "labels": ["language syntax"], 1187 | "releases": [ 1188 | { 1189 | "sublime_text": ">=3000", 1190 | "tags": true 1191 | }, 1192 | { 1193 | "sublime_text": "<3000", 1194 | "branch": "st2" 1195 | } 1196 | ] 1197 | }, 1198 | { 1199 | "name": "IPython Pick", 1200 | "details": "https://github.com/interlegis/sublime_ipython_pick", 1201 | "releases": [ 1202 | { 1203 | "sublime_text": ">=3000", 1204 | "tags": true 1205 | } 1206 | ] 1207 | }, 1208 | { 1209 | "name": "IRC", 1210 | "details": "https://github.com/markbirbeck/sublime-text-irc", 1211 | "labels": ["irc"], 1212 | "releases": [ 1213 | { 1214 | "sublime_text": ">=3000", 1215 | "tags": true 1216 | } 1217 | ] 1218 | }, 1219 | { 1220 | "name": "IRC Syntax", 1221 | "details": "https://github.com/barnumbirr/sublime-irc", 1222 | "labels": ["language syntax", "irc"], 1223 | "releases": [ 1224 | { 1225 | "sublime_text": ">=3092", 1226 | "tags": true 1227 | } 1228 | ] 1229 | }, 1230 | { 1231 | "name": "Iridis Colour Scheme", 1232 | "details": "https://github.com/gingerBill/iridis-colour-scheme", 1233 | "labels": ["color scheme", "colour scheme"], 1234 | "releases": [ 1235 | { 1236 | "sublime_text": "*", 1237 | "branch": "master" 1238 | } 1239 | ] 1240 | }, 1241 | { 1242 | "name": "Iris Path", 1243 | "details": "https://github.com/angelsanchez/iris-path-sublime", 1244 | "labels": ["iris"], 1245 | "releases": [ 1246 | { 1247 | "sublime_text": "<3000", 1248 | "tags": true 1249 | } 1250 | ] 1251 | }, 1252 | { 1253 | "name": "Iron router snippets", 1254 | "details": "https://github.com/Ogamedia/Router", 1255 | "labels": ["snippets", "meteor", "router", "iron router"], 1256 | "releases": [ 1257 | { 1258 | "sublime_text": "*", 1259 | "tags": true 1260 | } 1261 | ] 1262 | }, 1263 | { 1264 | "name": "Ironman Color Scheme", 1265 | "details": "https://github.com/sri-ni/ironman-color-scheme", 1266 | "labels": ["color scheme"], 1267 | "releases": [ 1268 | { 1269 | "sublime_text": "*", 1270 | "branch": "master" 1271 | } 1272 | ] 1273 | }, 1274 | { 1275 | "name": "iRules", 1276 | "details": "https://github.com/billchurch/sublime-iRules", 1277 | "labels": ["language syntax"], 1278 | "releases": [ 1279 | { 1280 | "sublime_text": ">=3000", 1281 | "tags": true 1282 | } 1283 | ] 1284 | }, 1285 | { 1286 | "name": "IrView", 1287 | "details": "https://github.com/guilhermeleobas/IrView", 1288 | "releases": [ 1289 | { 1290 | "sublime_text": "*", 1291 | "tags": true 1292 | } 1293 | ] 1294 | }, 1295 | { 1296 | "name": "ISML", 1297 | "details": "https://github.com/aearly/isml-tmlanguage", 1298 | "labels": ["language syntax"], 1299 | "releases": [ 1300 | { 1301 | "sublime_text": "*", 1302 | "branch": "master" 1303 | } 1304 | ] 1305 | }, 1306 | { 1307 | "name": "isort", 1308 | "details": "https://github.com/asfaltboy/sublime-text-isort-plugin", 1309 | "releases": [ 1310 | { 1311 | "sublime_text": "*", 1312 | "tags": true 1313 | } 1314 | ] 1315 | }, 1316 | { 1317 | "name": "isorted", 1318 | "details": "https://github.com/rimvaliulin/isorted", 1319 | "releases": [ 1320 | { 1321 | "sublime_text": "*", 1322 | "tags": true 1323 | } 1324 | ] 1325 | }, 1326 | { 1327 | "name": "ITDCHelper", 1328 | "details": "https://github.com/itdc/sublimetext-itdchelper", 1329 | "author": "Avtandil Kikabidze", 1330 | "releases": [ 1331 | { 1332 | "sublime_text": "*", 1333 | "tags": true 1334 | } 1335 | ] 1336 | }, 1337 | { 1338 | "name": "iTodo", 1339 | "details": "https://github.com/chagel/itodo", 1340 | "labels": ["language syntax"], 1341 | "releases": [ 1342 | { 1343 | "sublime_text": "<3000", 1344 | "branch": "master" 1345 | } 1346 | ] 1347 | }, 1348 | { 1349 | "name": "iTunes", 1350 | "details": "https://github.com/airtoxin/Sublime-iTunes", 1351 | "releases": [ 1352 | { 1353 | "platforms": "osx", 1354 | "sublime_text": ">=3000", 1355 | "branch": "master" 1356 | } 1357 | ] 1358 | }, 1359 | { 1360 | "name": "ixio", 1361 | "details": "https://github.com/jabyrd3/sublime-ixio", 1362 | "releases": [ 1363 | { 1364 | "platforms": "*", 1365 | "sublime_text": "*", 1366 | "tags": true 1367 | } 1368 | ] 1369 | } 1370 | ] 1371 | } 1372 | --------------------------------------------------------------------------------