vscode-extensions.natqe.reload: init at 0.0.7

This commit is contained in:
Felix Kimmel 2025-04-10 15:12:36 +02:00 committed by Felix Kimmel
parent 23645add0e
commit d54d73ca4b
2 changed files with 21 additions and 0 deletions

View File

@ -3758,6 +3758,8 @@ let
myriad-dreamin.tinymist = callPackage ./myriad-dreamin.tinymist { };
natqe.reload = callPackage ./natqe.reload { };
naumovs.color-highlight = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "color-highlight";

View File

@ -0,0 +1,19 @@
{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "reload";
publisher = "natqe";
version = "0.0.7";
hash = "sha256-j0Dj7YiawhPAMHe8wk8Ph4vo26IneidoGJ4C9O7Z/64=";
};
meta = {
description = "This extension will add reload button to status bar in the right-bottom of your VSCode editor.";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=natqe.reload";
homepage = "https://github.com/natqe/reload";
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.therobot2105 ];
};
}