Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix-mode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bb0b49e3ac15
Choose a base ref
...
head repository: NixOS/nix-mode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3022b9ef7490
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 29, 2020

  1. Skip descriptions in nix completions

    These were added in
    NixOS/nix@04e5d0e#diff-146b108989f29df822f73778ab286e13c9c65765619a5f4044ebed5e87349ec2.
    We don’t have a good way to show them in Emacs completions.
    matthewbauer committed Oct 29, 2020
    Copy the full SHA
    3022b9e View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 nix.el
2 changes: 1 addition & 1 deletion nix.el
Original file line number Diff line number Diff line change
@@ -204,7 +204,7 @@ OPTIONS a list of options to accept."
completions)
(dolist (val (cdr lines))
(unless (string= val "")
(setq completions (cons val completions))))
(setq completions (cons (car (split-string val "\t")) completions))))
(dolist (val (cddr pcomplete-args))
(pcomplete-here))
(pcomplete-here completions nil t)))