aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-02 21:51:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-02 21:51:28 +1300
commit8bb89092398dcc506df2da23b2ef73892d54d783 (patch)
tree06fe32e2d686516c75be2eec05f728fe04cb898d
parentAdd some comments to keep() completion (diff)
downloaddotfiles-8bb89092398dcc506df2da23b2ef73892d54d783.tar.gz
dotfiles-8bb89092398dcc506df2da23b2ef73892d54d783.zip
Reorder pattern filters for Makefile lines
-rw-r--r--bash/bash_completion.d/make.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bash_completion.d/make.bash b/bash/bash_completion.d/make.bash
index 2527d145..567a2ec0 100644
--- a/bash/bash_completion.d/make.bash
+++ b/bash/bash_completion.d/make.bash
@@ -23,10 +23,10 @@ _make() {
# Match expected format
case $line in
- # Has no equals sign anywhere
- (*=*) continue ;;
# First char not a tab
($'\t'*) continue ;;
+ # Has no equals sign anywhere
+ (*=*) continue ;;
# Has a colon on the line
(*:*) ;;
# Skip anything else