vscode-extensions.ndonfris.fish-lsp: init at 0.1.10 (#429267)

This commit is contained in:
Pol Dellaiera
2025-08-02 17:28:43 +02:00
committed by GitHub
2 changed files with 23 additions and 0 deletions
@@ -3650,6 +3650,8 @@ let
};
};
ndonfris.fish-lsp = callPackage ./ndonfris.fish-lsp { };
nefrob.vscode-just-syntax = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-just-syntax";
@@ -0,0 +1,21 @@
{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "ndonfris";
name = "fish-lsp";
version = "0.1.10";
hash = "sha256-aMuvBc2QVlRXpoBvWQaxC5SdwWzsauvVk1zMbK1p6oQ=";
};
meta = {
description = "LSP implementation for the fish shell language";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ndonfris.fish-lsp";
homepage = "https://github.com/ndonfris/fish-lsp";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tuynia ];
};
}