From 2197b3cfa017ae52d19fdcfb27f62bb3f25fbb89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Plagborg=20Bak=20S=C3=B8rensen?= <57013304+kpbaks@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:46:23 +0100 Subject: [PATCH] feat: add mising builtins.fromTOML nix tree-sitter injection (#12776) --- runtime/queries/nix/injections.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/runtime/queries/nix/injections.scm b/runtime/queries/nix/injections.scm index 6b4ddc1f4..2b87ff5d9 100644 --- a/runtime/queries/nix/injections.scm +++ b/runtime/queries/nix/injections.scm @@ -50,6 +50,15 @@ (#set! injection.language "json") (#set! injection.combined)) +; builtins.fromTOML toml +; Example: https://github.com/NixOS/nix/blob/3e8cd2ffe6c2c6ed8aae7853ddcfcc6d2a49b0ce/tests/functional/lang/eval-okay-fromTOML.nix +((apply_expression + function: (_) @_func + argument: (indented_string_expression (string_fragment) @injection.content)) + (#match? @_func "(^|\\.)fromTOML$") + (#set! injection.language "toml") + (#set! injection.combined)) + ; trivial-builders.nix pkgs.writeShellScript[Bin] name content ((apply_expression function: (apply_expression function: (_) @_func)