plugins/nvim-treesitter: add extraQueries
This commit is contained in:
parent
328ed67299
commit
20bf0c7e51
1 changed files with 45 additions and 10 deletions
|
@ -14,8 +14,34 @@ let
|
|||
if cfg.grammars == null then cfg.package.withAllGrammars
|
||||
else cfg.package.withPlugins cfg.grammars;
|
||||
|
||||
|
||||
postPatchExtraGrammars = lib.concatLines (lib.flip
|
||||
lib.mapAttrsToList
|
||||
cfg.extraGrammars
|
||||
(k: { src, language, ... }:
|
||||
''
|
||||
if [ -d ${src}/queries ]; then
|
||||
ln -s ${src}/queries queries/${language}
|
||||
fi
|
||||
''
|
||||
)
|
||||
);
|
||||
|
||||
postPatchExtraQueries = lib.concatLines (lib.flatten
|
||||
(lib.flip lib.mapAttrsToList cfg.extraQueries (
|
||||
lang:
|
||||
lib.mapAttrsToList (queryKind: queries:
|
||||
let file = pkgs.writeText "${lang}-${queryKind}" queries; in
|
||||
''
|
||||
mkdir -p queries/${lang}
|
||||
cat ${file} >> queries/${lang}/${queryKind}.scm
|
||||
''
|
||||
)
|
||||
))
|
||||
);
|
||||
|
||||
finalNvimTreeSitter =
|
||||
if cfg.extraGrammars == { } then nvimTreeSitterWithBuiltinGrammars
|
||||
if cfg.extraGrammars == { } && cfg.extraQueries == { } then nvimTreeSitterWithBuiltinGrammars
|
||||
else
|
||||
nvimTreeSitterWithBuiltinGrammars.overrideAttrs (oldAttrs: {
|
||||
passthru.dependencies = oldAttrs.passthru.dependencies
|
||||
|
@ -26,15 +52,9 @@ let
|
|||
''
|
||||
));
|
||||
|
||||
postPatch = oldAttrs.postPatch + (lib.concatLines
|
||||
(lib.flip lib.mapAttrsToList cfg.extraGrammars (k: { src, language, ... }:
|
||||
''
|
||||
if [ -d ${src}/queries ]; then
|
||||
ln -s ${src}/queries queries/${language}
|
||||
fi
|
||||
''
|
||||
))
|
||||
);
|
||||
postPatch = oldAttrs.postPatch
|
||||
+ postPatchExtraGrammars
|
||||
+ postPatchExtraQueries;
|
||||
});
|
||||
in
|
||||
{
|
||||
|
@ -62,6 +82,21 @@ in
|
|||
default = { };
|
||||
};
|
||||
|
||||
extraQueries = mkOption {
|
||||
type = with types; attrsOf (submodule {
|
||||
options = {
|
||||
injections = mkOption {
|
||||
type = str;
|
||||
default = "";
|
||||
};
|
||||
};
|
||||
});
|
||||
default = { };
|
||||
example = {
|
||||
javascript.injections = ''(comment) @comment'';
|
||||
};
|
||||
};
|
||||
|
||||
settings = mkOption {
|
||||
type = types.attrs;
|
||||
default = { };
|
||||
|
|
Loading…
Reference in a new issue