nix-mode icon indicating copy to clipboard operation
nix-mode copied to clipboard

An Emacs major mode for editing Nix expressions.

Results 45 nix-mode issues
Sort by recently updated
recently updated
newest added

I installed nix-mode with ```elisp (use-package nix-mode :mode "\\.nix\\'" ) ``` I'm writing nix with org-babel. Whenever I call `(org-babel-tangle-file (buffer-file-name))`, it errors ``` error in process sentinel: Symbol’s function...

Docs: https://nixos.org/manual/nix/stable/command-ref/new-cli/nix.html#shebang-interpreter This is slightly more complicated than nix-shell detection due to the `#!nix ...` not appearing directly after the shebang, so re-search-forward is used to find the matching line....

Hello, I have a problem with the nix-eshell command. I cannot use the programs I defined in my .nix file. It somehow does not update the environment variables. ```in eshell:...

Hi, When I use nix-mode I get this warning message: ``` Warning (comp): nix-mode.el:362:37: Warning: value returned from (match-beginning 0) is unused ``` ``` $ emacs --version GNU Emacs 28.2...

Maybe I'm just missing something, but I could not find a functionality like this for instacne ```lisp (defun ale/nix-send-buffer-to-repl (&optional arg) (interactive "P") (let ((contents (buffer-string))) (save-excursion (nix-repl-show) (when arg...

Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 20 to 22. Release notes Sourced from cachix/install-nix-action's releases. install-nix-action-v22 Nix 2.16.1 Fix issues with System Integrity Protection when using macos-12 install-nix-action-v21 pin Nix to 2.15.1 (recent...

dependencies

Add transient prefixes for verbose tracing flags.

In https://github.com/LnL7/vim-nix/pull/28, there is support for highlighting code within nix `lines`, using inline comments before the opening `''`, like ```nix { foo = /* sh */ '' mkdir -p $out/share...

And other situations, here's copy paste of my org mode todo: ```org * TODO try adding a completion at point function for .# ** that works with basically anything with...