diff options
author | Camil Staps | 2018-10-23 10:30:31 +0200 |
---|---|---|
committer | Camil Staps | 2018-10-23 10:30:31 +0200 |
commit | 1c05f9593fbb0c55313b7840e37912ae33a028c5 (patch) | |
tree | b8964e15ebf82eeb588e68c9348ee9d17a264536 /system/.bash_completion | |
parent | Add undocumented options to clm completion (diff) |
Move Clean completion to separate repository
Diffstat (limited to 'system/.bash_completion')
-rw-r--r-- | system/.bash_completion | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/.bash_completion b/system/.bash_completion index 21daa89..a4b4705 100644 --- a/system/.bash_completion +++ b/system/.bash_completion @@ -1,3 +1,4 @@ -for f in ~/.bash_completion.d/*; do +for f in ~/.bash_completion.d/* $CLEAN_HOME/etc/completion/*; do + [ -f "$f" ] || continue . "$f" done |