vscode-extensions.reditorsupport.r-syntax: init at 0.1.3

This commit is contained in:
Ivy Fan-Chiang
2025-09-22 22:42:41 -04:00
parent 36aebc7770
commit 6c74b6e48c
2 changed files with 23 additions and 0 deletions
@@ -3971,6 +3971,8 @@ let
reditorsupport.r = callPackage ./reditorsupport.r { };
reditorsupport.r-syntax = callPackage ./reditorsupport.r-syntax { };
release-candidate.vscode-scheme-repl = callPackage ./release-candidate.vscode-scheme-repl { };
reloadedextensions.reloaded-cpp = buildVscodeMarketplaceExtension {
@@ -0,0 +1,21 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "r-syntax";
publisher = "REditorSupport";
version = "0.1.3";
hash = "sha256-grkfkmyERVUkB8kSH+NPd2Mv4WF/h/obw8ebmxPx5zU=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/REditorSupport.r-syntax/changelog";
description = "R Synxtax Highlight for Visual Studio Code";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=REditorSupport.r-syntax";
homepage = "https://github.com/REditorSupport/vscode-R-syntax";
license = lib.licenses.mit;
maintainers = [
lib.maintainers.ivyfanchiang
lib.maintainers.pandapip1
];
};
}