summaryrefslogtreecommitdiff
path: root/completions/sqlite3
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
commit95623d39d6029ba78ec96ad5ea08e9ac12629b91 (patch)
treeea0fe36eb5e6f40e0a1f765d44c4b0c0b2bfb089 /completions/sqlite3
parent019f3cc463db63abc6460f97deb488deec43840b (diff)
downloadbash-completion-95623d39d6029ba78ec96ad5ea08e9ac12629b91.tar.gz
New upstream version 2.11upstream/2.11upstream
Diffstat (limited to 'completions/sqlite3')
-rw-r--r--completions/sqlite316
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/sqlite3 b/completions/sqlite3
index a7005489..26d38a1f 100644
--- a/completions/sqlite3
+++ b/completions/sqlite3
@@ -8,8 +8,8 @@ _sqlite3()
local dbexts='@(sqlite?(3)|?(s?(3))db)'
case $prev in
- -help|-version|-lookaside|-mmap|-newline|-nullvalue|-pagecache|\
- -scratch|-separator|*.$dbexts)
+ -help | -version | -lookaside | -mmap | -newline | -nullvalue | -pagecache | \
+ -scratch | -separator | *.$dbexts)
return
;;
-init)
@@ -18,21 +18,21 @@ _sqlite3()
;;
-cmd)
compopt -o filenames
- COMPREPLY=( $(compgen -c -- "$cur") )
+ COMPREPLY=($(compgen -c -- "$cur"))
return
;;
esac
- [[ $cword -gt 2 && ${words[cword-2]} == -@(lookaside|pagecache|scratch) ]] \
- && return
+ [[ $cword -gt 2 && ${words[cword - 2]} == -@(lookaside|pagecache|scratch) ]] &&
+ return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" -help)' -- "$cur") )
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" -help)' -- "$cur"))
return
fi
_filedir "$dbexts"
} &&
-complete -F _sqlite3 sqlite3
+ complete -F _sqlite3 sqlite3
# ex: filetype=sh