diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-05-10 21:35:07 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-05-10 21:35:07 +0200 |
commit | e0c19ee620c53b52ca7cf69c19d414d782338be1 (patch) | |
tree | a28571713bc2558e09798d2f4bdc2d0220802649 /src/nix/command.cc | |
parent | 91ddee6bf045b1c6144d14233abdb96127186ec3 (diff) |
Add completion for paths
Diffstat (limited to 'src/nix/command.cc')
-rw-r--r-- | src/nix/command.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix/command.cc b/src/nix/command.cc index 71b027719..803a36e84 100644 --- a/src/nix/command.cc +++ b/src/nix/command.cc @@ -108,6 +108,7 @@ MixProfile::MixProfile() .description = "profile to update", .labels = {"path"}, .handler = {&profile}, + .completer = completePath }); } |