summaryrefslogtreecommitdiff
path: root/completions/sqlite3
diff options
context:
space:
mode:
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