aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/pass.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-11-27 11:24:59 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-11-27 11:24:59 +1300
commitb142ba9c08d9e8c145f94faae24ec747908c21b2 (patch)
tree1202c2cb6c1de928c965245f69ca20cc546ba726 /bash/bashrc.d/pass.bash
parentStrip colons from COMP_WORDBREAKS (diff)
downloaddotfiles-b142ba9c08d9e8c145f94faae24ec747908c21b2.tar.gz
dotfiles-b142ba9c08d9e8c145f94faae24ec747908c21b2.zip
Remove a now-inapplicable comment
Diffstat (limited to 'bash/bashrc.d/pass.bash')
-rw-r--r--bash/bashrc.d/pass.bash4
1 files changed, 0 insertions, 4 deletions
diff --git a/bash/bashrc.d/pass.bash b/bash/bashrc.d/pass.bash
index 91d2d538..348978ca 100644
--- a/bash/bashrc.d/pass.bash
+++ b/bash/bashrc.d/pass.bash
@@ -15,11 +15,7 @@ _pass()
# doesn't seem to do this properly with a null delimiter)
local entry
while IFS= read -d '' -r entry ; do
-
- # We have to use printf %q here to quote the entry, as it may include
- # spaces or newlines, just like any filename
COMPREPLY=("${COMPREPLY[@]}" "$entry")
-
done < <(
# Set shell options to expand globs the way we expect