diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-12-22 14:44:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-22 14:44:40 +0100 |
commit | ddd78391547be5f34f4042fd48124c0ced1f33b2 (patch) | |
tree | 76728dc310faa76b3057f1e5312f3c91a71bb745 /misc | |
parent | dc83298449d5547926febe24c7bf973341127f60 (diff) | |
parent | 5b5f68f1dd4395f0ef7231218295d1c633d4288b (diff) |
Merge pull request #5819 from edolstra/devshell-completion
Make bash completion for 'nix' work in a devshell
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bash/completion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/bash/completion.sh b/misc/bash/completion.sh index bea2a40bc..0af90d8c1 100644 --- a/misc/bash/completion.sh +++ b/misc/bash/completion.sh @@ -13,7 +13,7 @@ function _complete_nix { else COMPREPLY+=("$completion") fi - done < <(NIX_GET_COMPLETIONS=$cword "${words[@]}") + done < <(NIX_GET_COMPLETIONS=$cword "${words[@]/#\~/$HOME}") __ltrim_colon_completions "$cur" } |