aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_completion.d/mysql.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-01 13:15:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-01 13:15:28 +1300
commitb6c540ded9a527f19b8bff7888e330ba2786f552 (patch)
tree2fdddfb9844127ee20be21b83e6fb4c749328588 /bash/bash_completion.d/mysql.bash
parentOverhaul bd() completion again (diff)
downloaddotfiles-b6c540ded9a527f19b8bff7888e330ba2786f552.tar.gz
dotfiles-b6c540ded9a527f19b8bff7888e330ba2786f552.zip
Use the positional parameter aliases for words
The current word is available in $2, and the previous word in $3. That's easier (and maybe a bit less expensive) to dig out, so let's use it.
Diffstat (limited to 'bash/bash_completion.d/mysql.bash')
-rw-r--r--bash/bash_completion.d/mysql.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_completion.d/mysql.bash b/bash/bash_completion.d/mysql.bash
index 3ff97090..b6c3ce93 100644
--- a/bash/bash_completion.d/mysql.bash
+++ b/bash/bash_completion.d/mysql.bash
@@ -31,7 +31,7 @@ _mysql() {
# Collect all the config file names, strip off leading path and .cnf
local -a cnfs
- cnfs=("$dirname"/"${COMP_WORDS[COMP_CWORD]}"*.cnf)
+ cnfs=("$dirname"/"$2"*.cnf)
cnfs=("${cnfs[@]#"$dirname"/}")
cnfs=("${cnfs[@]%.cnf}")