summaryrefslogtreecommitdiffstats
path: root/assets
AgeCommit message (Collapse)Author
2024-04-15[JavaScript] Support bun in shebang for syntax highlighting (#2913)Sharun
* [JavaScript] Support bun in shebang for syntax highlighting --------- Co-authored-by: Keith Hall <keith-hall@users.noreply.github.com>
2024-04-01Bump assets/syntaxes/02_Extra/Julia from `98233f9` to `3366b10` (#2918)dependabot[bot]
Bumps [assets/syntaxes/02_Extra/Julia](https://github.com/JuliaEditorSupport/Julia-sublime) from `98233f9` to `3366b10`. - [Release notes](https://github.com/JuliaEditorSupport/Julia-sublime/releases) - [Commits](https://github.com/JuliaEditorSupport/Julia-sublime/compare/98233f96d4827a1a576c0b8bf87a68b9c97e4306...3366b10be91aaab7a61ae0bc0a5af5cc375e58d1) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/Julia dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-08Bump assets/syntaxes/02_Extra/cmd-help from `b150d84` to `209559b` (#2841)dependabot[bot]
Bumps [assets/syntaxes/02_Extra/cmd-help](https://github.com/victor-gp/cmd-help-sublime-syntax) from `b150d84` to `209559b`. - [Commits](https://github.com/victor-gp/cmd-help-sublime-syntax/compare/b150d84534dd060afdcaf3f58977faeaf5917e56...209559b72f7e8848c988828088231b3a4d8b6838) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/cmd-help dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-01Bump assets/themes/zenburn from `e627f1c` to `86d4ee7` (#2842)dependabot[bot]
Bumps [assets/themes/zenburn](https://github.com/colinta/zenburn) from `e627f1c` to `86d4ee7`. - [Commits](https://github.com/colinta/zenburn/compare/e627f1cb223c1171ab0a6a48d166c87aeae2a1d5...86d4ee7a1f884851a1d21d66249687f527fced32) --- updated-dependencies: - dependency-name: assets/themes/zenburn dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-03Bump assets/syntaxes/02_Extra/SublimeJQ from `6870582` to `b7e53e5` (#2820)dependabot[bot]
* Bump assets/syntaxes/02_Extra/SublimeJQ from `6870582` to `b7e53e5` Bumps [assets/syntaxes/02_Extra/SublimeJQ](https://github.com/zogwarg/SublimeJQ) from `6870582` to `b7e53e5`. - [Commits](https://github.com/zogwarg/SublimeJQ/compare/687058289c1a888e0895378432d66b41609a84d8...b7e53e5d86814f04a48d2e441bcf5f9fdf07e9c1) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/SublimeJQ dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * update highlighted version of sample.jq * update changelog --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Keith Hall <kingkeith+github@gmail.com>
2023-12-29Bump cmd-help syntax to latestVíctor González Prieto
Manual update (as opposed to Dependabot's) because the highlighting for the test help message has changed. It's all good because it's as intended, an improvement. See victor-gp/cmd-help-sublime-syntax#23
2023-12-01Bump assets/themes/zenburn from `43dc527` to `e627f1c` (#2790)dependabot[bot]
Bumps [assets/themes/zenburn](https://github.com/colinta/zenburn) from `43dc527` to `e627f1c`. - [Commits](https://github.com/colinta/zenburn/compare/43dc527731731666d6d2b1311e86951a8ce07fec...e627f1cb223c1171ab0a6a48d166c87aeae2a1d5) --- updated-dependencies: - dependency-name: assets/themes/zenburn dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-01Improvements and fixes to zsh completionOliver Kiddle
* Use correct return status so that approximate completion isn't broken * Follow zsh conventions on description forms * Some options can be used multiple times, e.g. -H, -r, --file-name * Set completion context correctly for the cache subcommand * Better completion for --map-syntax argument * Add --nonprintable-notation option * Correct some of the mutual exclusion lists for options
2023-11-04fix(completions): add missing fish completionsMaria José Solano
2023-10-11Bump version to v0.24.0v0.24.0Martin Nordholts
We need to bump 0.x.0 because the library API changed in incompatible ways: $ cargo public-api diff Resolved `diff` to `diff 0.23.0` Removed items from the public API ================================= (none) Changed items in the public API =============================== -pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>) -> bat::error::Result<bool> +pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>) -> bat::error::Result<bool> -pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool> +pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool> Added items to the public API ============================= [...]
2023-10-10Update the ssh-config submodule (#2697)Mészáros Máté Róbert
* Update the ssh-config submodule Pull in the fix for the syntax. Fixes #2359 * Extend the ssh_config syntax test
2023-10-04Add support for WGSLrhysd
2023-09-08make LESSOPEN support opt-inAnomalocaridid
2023-09-02Add `$LESSOPEN` and `$LESSCLOSE` support (#2444)Anomalocaridid
2023-09-01Bump assets/syntaxes/02_Extra/Docker from `9e9a518` to `0f6b7bc`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/Docker](https://github.com/asbjornenge/Docker.tmbundle) from `9e9a518` to `0f6b7bc`. - [Release notes](https://github.com/asbjornenge/Docker.tmbundle/releases) - [Commits](https://github.com/asbjornenge/Docker.tmbundle/compare/9e9a518aed93031042c54710f8f02c839301de26...0f6b7bc87acf684f7b0790fd480731ffb4615b87) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/Docker dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-09-01add NSIS supportJan T. Sott
2023-09-01Bump assets/syntaxes/02_Extra/Julia from `4fde0fd` to `98233f9`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/Julia](https://github.com/JuliaEditorSupport/Julia-sublime) from `4fde0fd` to `98233f9`. - [Release notes](https://github.com/JuliaEditorSupport/Julia-sublime/releases) - [Commits](https://github.com/JuliaEditorSupport/Julia-sublime/compare/4fde0fdeddb3ca8486d3f490a2f051cba39a0a48...98233f96d4827a1a576c0b8bf87a68b9c97e4306) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/Julia dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-05-12Clean-up bash comletion Adrián Bíro
"cword" is unset and even is not used in completion for other shells, so it probably shouldn't be here either. If it for some reason should be there add the directive "# shellcheck disable=SC2034" to the line above it.
2023-03-25Minor fix in man pageDavid Peter
2023-03-25Update man page regarding --nonprintable-notationv0.23.0David Peter
2023-03-25Update binary assetsDavid Peter
2023-03-17Add crontab syntaxKeith Hall
2023-03-04More consistent scoping in commands section in ManpagesKeith Hall
2023-03-01Merge pull request #2491 from ↵David Peter
sharkdp/dependabot/submodules/assets/syntaxes/02_Extra/MediaWiki-5dceaa9 Bump assets/syntaxes/02_Extra/MediaWiki from `81bf97c` to `5dceaa9`
2023-03-01Bump assets/syntaxes/02_Extra/MediaWiki from `81bf97c` to `5dceaa9`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/MediaWiki](https://github.com/tosher/Mediawiker) from `81bf97c` to `5dceaa9`. - [Release notes](https://github.com/tosher/Mediawiker/releases) - [Commits](https://github.com/tosher/Mediawiker/compare/81bf97cace59bedcb1668e7830b85c36e014428e...5dceaa9dd9af0d2266f1c9e45966d8a610226213) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/MediaWiki dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-03-01Bump assets/syntaxes/02_Extra/CMake from `ab6ef4e` to `eb40ede`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/CMake](https://github.com/zyxar/Sublime-CMakeLists) from `ab6ef4e` to `eb40ede`. - [Release notes](https://github.com/zyxar/Sublime-CMakeLists/releases) - [Commits](https://github.com/zyxar/Sublime-CMakeLists/compare/ab6ef4ef9f9b974806ea0788430a8c087ebe3761...eb40ede56c2d4d5a4a129b2a5bc7095a2df46bb1) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/CMake dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-02-05Scope environment variable and commands sections in ManpagesKeith Hall
2023-02-01Merge pull request #2462 from ↵David Peter
sharkdp/dependabot/submodules/assets/themes/zenburn-43dc527 Bump assets/themes/zenburn from `702023d` to `43dc527`
2023-02-01Bump assets/syntaxes/02_Extra/cmd-help from `7797e20` to `f41e5fc`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/cmd-help](https://github.com/victor-gp/cmd-help-sublime-syntax) from `7797e20` to `f41e5fc`. - [Release notes](https://github.com/victor-gp/cmd-help-sublime-syntax/releases) - [Commits](https://github.com/victor-gp/cmd-help-sublime-syntax/compare/7797e206efbb22038f36315130b8c8f70091d2e4...f41e5fc8381fe200a4e18c410bb41e911110a6e9) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/cmd-help dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-02-01Bump assets/themes/zenburn from `702023d` to `43dc527`dependabot[bot]
Bumps [assets/themes/zenburn](https://github.com/colinta/zenburn) from `702023d` to `43dc527`. - [Release notes](https://github.com/colinta/zenburn/releases) - [Commits](https://github.com/colinta/zenburn/compare/702023d80d9f845a5847eefc4c81c2d4dbbdac59...43dc527731731666d6d2b1311e86951a8ce07fec) --- updated-dependencies: - dependency-name: assets/themes/zenburn dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-01-17Merge pull request #2432 from ↵David Peter
sharkdp/dependabot/submodules/assets/syntaxes/02_Extra/cmd-help-7797e20 Bump assets/syntaxes/02_Extra/cmd-help from `9b25682` to `7797e20`
2023-01-01add json key highlighting patch for twodarkJosh Toft
2023-01-01Bump assets/syntaxes/02_Extra/cmd-help from `9b25682` to `7797e20`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/cmd-help](https://github.com/victor-gp/cmd-help-sublime-syntax) from `9b25682` to `7797e20`. - [Release notes](https://github.com/victor-gp/cmd-help-sublime-syntax/releases) - [Commits](https://github.com/victor-gp/cmd-help-sublime-syntax/compare/9b256829473669cbdc8c97af81242a7a55e998fc...7797e206efbb22038f36315130b8c8f70091d2e4) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/cmd-help dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2022-12-18Disable completion of `cache` subcommand (#2399)cyqsimon
* Disable completion of `cache` subcommand * Fully removed completion code for `cache` * Add to changelog
2022-12-07Bump cmd-help syntax to latestVíctor González Prieto
This update includes an overhaul of scope names to better support the set of themes included with bat. You can find a visual diff for every theme in this PR: https://github.com/victor-gp/cmd-help-sublime-syntax/pull/17 This commit updates the cmd-help syntax test because the scopes (-> colors) have changed.
2022-12-03Bump assets/syntaxes/02_Extra/TodoTxt from `f5f0a6c` to `071a004` (#2411)dependabot[bot]
Bumps [assets/syntaxes/02_Extra/TodoTxt](https://github.com/dertuxmalwieder/SublimeTodoTxt) from `f5f0a6c` to `071a004`. - [Release notes](https://github.com/dertuxmalwieder/SublimeTodoTxt/releases) - [Commits](https://github.com/dertuxmalwieder/SublimeTodoTxt/compare/f5f0a6c47f8948193f5e185576d49379a1438077...071a004217f981152c78dc7a530536374a753d98) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/TodoTxt dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-03Bump assets/syntaxes/02_Extra/TOML from `ed38438` to `fd0bf3e` (#2410)dependabot[bot]
* Bump assets/syntaxes/02_Extra/TOML from `ed38438` to `fd0bf3e` Bumps [assets/syntaxes/02_Extra/TOML](https://github.com/jasonwilliams/sublime_toml_highlighting) from `ed38438` to `fd0bf3e`. - [Release notes](https://github.com/jasonwilliams/sublime_toml_highlighting/releases) - [Commits](https://github.com/jasonwilliams/sublime_toml_highlighting/compare/ed38438900d6b128353cd1aa1364e2e3b8ffb8a2...fd0bf3e5d6c9e6397c0dc9639a0514d9bf55b800) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/TOML dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update CHANGELOG.md Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Nordholts <enselic@gmail.com>
2022-11-04Merge pull request #2366 from Freed-Wu/vimhelpDavid Peter
Add VimHelp.sublime-syntax and its test
2022-11-02Merge pull request #2361 from Freed-Wu/mainDavid Peter
Add Requirementstxt.sublime-syntax and its test.
2022-11-02Merge pull request #2386 from ↵David Peter
sharkdp/dependabot/submodules/assets/syntaxes/02_Extra/cmd-help-ade16bf Bump assets/syntaxes/02_Extra/cmd-help from `aa47747` to `ade16bf`
2022-11-01Bump assets/syntaxes/02_Extra/cmd-help from `aa47747` to `ade16bf`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/cmd-help](https://github.com/victor-gp/cmd-help-sublime-syntax) from `aa47747` to `ade16bf`. - [Release notes](https://github.com/victor-gp/cmd-help-sublime-syntax/releases) - [Commits](https://github.com/victor-gp/cmd-help-sublime-syntax/compare/aa477471c870360bd1705a1a370d67b7c6fbe731...ade16bf1c10fe88ef8d71e7e0a8769f366e5a522) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/cmd-help dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2022-11-01Bump assets/syntaxes/02_Extra/HTML (Twig) from `77def40` to `aedf955`dependabot[bot]
Bumps [assets/syntaxes/02_Extra/HTML (Twig)](https://github.com/Anomareh/PHP-Twig.tmbundle) from `77def40` to `aedf955`. - [Release notes](https://github.com/Anomareh/PHP-Twig.tmbundle/releases) - [Commits](https://github.com/Anomareh/PHP-Twig.tmbundle/compare/77def406d70b90dff33d006478198b729e23d22c...aedf955eba9753554815b2cbef5e072415e42068) --- updated-dependencies: - dependency-name: assets/syntaxes/02_Extra/HTML (Twig) dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2022-10-30Merge branch 'master' into masterDavid Peter
2022-10-30Merge branch 'master' into feat/env-extensionDavid Peter
2022-10-30Merge pull request #2352 from Freed-Wu/extensionDavid Peter
Add new file_extensions for INI
2022-10-30Merge pull request #2316 from dkm/pr/ada_syntaxDavid Peter
Add syntax support for Ada
2022-10-30Add more dotenv file typesVille Skyttä
Upstream PR: https://github.com/zaynali53/DotENV/pull/17
2022-10-30Add VimHelp.sublime-syntax and its testWu Zhenyu
2022-10-30Add Requirementstxt.sublime-syntax and its test.Wu Zhenyu
2022-10-30Add new file_extensions for INIWu Zhenyu
- https://coverage.readthedocs.io/en/6.3.2/faq.html#q-can-i-find-out-which-tests-ran-which-lines - https://pylint.pycqa.org/en/latest/user_guide/usage/run.html#command-line-options - https://jorisroovers.com/gitlint/configuration/