branch: elpa/nix-mode commit 3957a90b1a3ae8f4702369cd7395cd7c5a2b9b7f Author: Remy Goldschmidt <tak...@gmail.com> Commit: Matthew Justin Bauer <mjbaue...@gmail.com>
Add `null` to list of Nix builtins --- nix-mode.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix-mode.el b/nix-mode.el index 4a3bc0bd94..ac5824b641 100644 --- a/nix-mode.el +++ b/nix-mode.el @@ -36,10 +36,10 @@ (defconst nix-builtins '("builtins" "baseNameOf" "derivation" "dirOf" - "false" "fetchTarball" - "import" "isNull" - "map" "removeAttrs" - "toString" "true")) + "true" "false" "null" + "isNull" "toString" + "fetchTarball" "import" + "map" "removeAttrs")) (defconst nix-warning-keywords '("assert" "abort" "throw"))