diff options
author | superherointj | 2024-06-17 11:48:37 -0300 |
---|---|---|
committer | GitHub | 2024-06-17 11:48:37 -0300 |
commit | 601ceba77e6dda0b85896e68d6eb7b7d345cdc43 (patch) | |
tree | 251e0dbdc77536055603ba706a94637c6ccb887f /pkgs/applications | |
parent | 8aaa1301184c49bb42e840b389c9bb5f0da80d38 (diff) | |
parent | 0fa56095a2c153a1133bfb874b118702518b612a (diff) |
Merge pull request #320525 from uncenter/pr-dbd2e32a
vscode-extensions.bierner.comment-tagged-templates: init at 0.3.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r-- | pkgs/applications/editors/vscode/extensions/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 2c033a5f1e05..57c26ee7b548 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -542,6 +542,22 @@ let betterthantomorrow.calva = callPackage ./betterthantomorrow.calva { }; + bierner.comment-tagged-templates = buildVscodeMarketplaceExtension { + mktplcRef = { + name = "comment-tagged-templates"; + publisher = "bierner"; + version = "0.3.3"; + hash = "sha256-M2XdMQ2l6oMYiHTdfRJ/n/Ys3LecEPwAozQtLBcn7FY="; + }; + meta = { + changelog = "https://marketplace.visualstudio.com/items/bierner.comment-tagged-templates/changelog"; + description = "VS Code extension that adds basic syntax highlighting for JavaScript and TypeScript tagged template strings using language identifier comments"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=bierner.comment-tagged-templates"; + homepage = "https://github.com/mjbvz/vscode-comment-tagged-templates"; + license = lib.licenses.mit; + }; + }; + bierner.docs-view = buildVscodeMarketplaceExtension { mktplcRef = { name = "docs-view"; |