aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-05 23:11:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-05 23:11:05 +1200
commit0a7615151c7846de6183d658c6f4d42e598932d0 (patch)
treec1bb260f134376294406f782c5d35752c4d070ad
parentThorough completion for path (diff)
downloaddotfiles-0a7615151c7846de6183d658c6f4d42e598932d0.tar.gz
dotfiles-0a7615151c7846de6183d658c6f4d42e598932d0.zip
Missing word as possible completion
-rw-r--r--bash/bashrc.d/path.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/path.bash b/bash/bashrc.d/path.bash
index 4e417d32..f993830c 100644
--- a/bash/bashrc.d/path.bash
+++ b/bash/bashrc.d/path.bash
@@ -180,7 +180,7 @@ _path() {
case ${COMP_WORDS[1]} in
# Complete with one directory
- insert|i|append|a|check|c)
+ insert|i|append|add|a|check|c)
if ((COMP_CWORD == 2)) ; then
COMPREPLY=( $(compgen -A directory -- "$word") )
fi