branch: elpa/nix-mode commit 015bf9639ad47ada7857e86f039fd79f0c7da906 Author: Matthew Bauer <mjbaue...@gmail.com> Commit: Matthew Bauer <mjbaue...@gmail.com>
Remove filenames handling nix gives us the filenames --- nix.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/nix.el b/nix.el index 2ed8f84c69..0a40df895e 100644 --- a/nix.el +++ b/nix.el @@ -202,8 +202,6 @@ OPTIONS a list of options to accept." (kill-buffer stdout) (let ((lines (split-string result "\n")) completions) - (when (string= (nth 1 lines) "filenames") - (pcomplete-here (pcomplete-entries nil 'file-exists-p))) (dolist (val (cdr lines)) (unless (string= val "") (setq completions (cons val completions))))