aboutsummaryrefslogtreecommitdiffstats
path: root/bash-completion/col
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/col')
-rw-r--r--bash-completion/col16
1 files changed, 8 insertions, 8 deletions
diff --git a/bash-completion/col b/bash-completion/col
index 41cac72405..cea57b5998 100644
--- a/bash-completion/col
+++ b/bash-completion/col
@@ -13,14 +13,14 @@ _col_module()
return 0
;;
esac
- OPTS="-b --no-backspaces
- -f --fine
- -p --pass
- -h --tabs
- -x --spaces
- -l --lines
- -V --version
- -H --help"
+ OPTS="--no-backspaces
+ --fine
+ --pass
+ --tabs
+ --spaces
+ --lines
+ --version
+ --help"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
}