mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-02 12:04:44 +00:00
Improve bash completion support (#24692)
Following https://github.com/nim-lang/nimble/pull/1347, this patch adds bash completion support for `nim`, `nimgrep`, `nimpretty`, `nimsuggest`.
This commit is contained in:
291
tools/nimsuggest.bash-completion
Normal file
291
tools/nimsuggest.bash-completion
Normal file
@@ -0,0 +1,291 @@
|
||||
# bash completion for nimsuggest -*- shell-script -*-
|
||||
|
||||
__is_short_or_long()
|
||||
{
|
||||
local actual short long
|
||||
actual="$1"
|
||||
short="$2"
|
||||
long="$3"
|
||||
[[ ! -z $short && $actual == $short ]] && return 0
|
||||
[[ ! -z $long && $actual == $long ]] && return 0
|
||||
return 1
|
||||
}
|
||||
|
||||
__ask_for_subcmd_or_subopts()
|
||||
{
|
||||
local args cmd subcmd words sub_words word_first word_last word_lastlast
|
||||
local len ilast ilastlast i ele sub_len n_nopts
|
||||
|
||||
args=("$@")
|
||||
ask_for_what="${args[0]}"
|
||||
cmd="${args[1]}"
|
||||
subcmd="${args[2]}"
|
||||
ilast="${args[3]}"
|
||||
words=("${args[@]:4}")
|
||||
len=${#words[@]}
|
||||
ilastlast=$((ilast - 1))
|
||||
sub_words=("${words[@]:0:ilast}")
|
||||
sub_len=${#sub_words[@]}
|
||||
word_first=${words[0]}
|
||||
word_last=${words[ilast]}
|
||||
word_lastlast=${words[ilastlast]}
|
||||
n_nopts=0
|
||||
|
||||
# printf "\n[DBUG] word_first:${word_first}|ilast:${ilast}|words(${len}):${words[*]}|sub_words(${sub_len}):${sub_words[*]}\n"
|
||||
|
||||
if [[ $word_first != $cmd ]]
|
||||
then
|
||||
return 1
|
||||
fi
|
||||
|
||||
i=0
|
||||
while [[ $i -lt $len ]]
|
||||
do
|
||||
ele=${words[i]}
|
||||
if [[ ! $ele =~ ^- ]]
|
||||
then
|
||||
if [[ $ele == $cmd || $ele == $subcmd ]]
|
||||
then
|
||||
((n_nopts+=1))
|
||||
elif [[ $i -eq $ilast && $ele =~ ^[a-zA-Z] ]]
|
||||
then
|
||||
((i=i))
|
||||
elif [[ -z $ele ]]
|
||||
then
|
||||
((i=i))
|
||||
elif [[ $ele =~ ^: ]]
|
||||
then
|
||||
((i+=1))
|
||||
else
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
((i+=1))
|
||||
done
|
||||
|
||||
case $ask_for_what in
|
||||
1)
|
||||
if [[ n_nopts -eq 1 ]]
|
||||
then
|
||||
if [[ -z $word_last || $word_last =~ ^[a-zA-Z] ]] && [[ $word_lastlast != : ]]
|
||||
then
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
2)
|
||||
if [[ n_nopts -eq 2 ]]
|
||||
then
|
||||
if [[ -z $word_last ]] || [[ $word_last =~ ^[-:] ]]
|
||||
then
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
esac
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
__ask_for_subcmd()
|
||||
{
|
||||
__ask_for_subcmd_or_subopts 1 "$@"
|
||||
}
|
||||
|
||||
__ask_for_subcmd_opts()
|
||||
{
|
||||
__ask_for_subcmd_or_subopts 2 "$@"
|
||||
}
|
||||
|
||||
_nimsuggest()
|
||||
{
|
||||
local curr prev prevprev words
|
||||
local i_curr n_words i_prev i_prevprev
|
||||
|
||||
COMPREPLY=()
|
||||
i_curr=$COMP_CWORD
|
||||
n_words=$((i_curr+1))
|
||||
i_prev=$((i_curr-1))
|
||||
i_prevprev=$((i_curr-2))
|
||||
curr="${COMP_WORDS[i_curr]}"
|
||||
prev="${COMP_WORDS[i_prev]}"
|
||||
prevprev="${COMP_WORDS[i_prevprev]}"
|
||||
words=("${COMP_WORDS[@]:0:n_words}")
|
||||
|
||||
local subcmds opts candids
|
||||
|
||||
# printf "\n[DBUG] curr:$curr|prev:$prev|words(${#words[*]}):${words[*]}\n"
|
||||
|
||||
# Asking for a subcommand
|
||||
if false && __ask_for_subcmd nimsuggest nimsuggest $i_curr "${words[@]}"
|
||||
then
|
||||
subcmds=""
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Prioritize subcmd over opt
|
||||
if false
|
||||
then
|
||||
return 124
|
||||
elif false && __ask_for_subcmd_opts nimsuggest compileToC $i_curr "${words[@]}"
|
||||
then
|
||||
opts=() \
|
||||
&& candids=()
|
||||
else
|
||||
opts=() \
|
||||
&& candids=()
|
||||
opts+=("" "--autobind" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--port" "PORT") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--address" "HOST") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--stdin" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--clientProcessId" "PID") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--epc" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--debug" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--log" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--v1" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--v2" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--v3" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--v4" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--info" "nimVer protocolVer capabilities") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--refresh" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--maxresults" "N") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--tester" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--find" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--exceptionInlayHints" "on off") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
opts+=("" "--help" "") \
|
||||
&& candids+=(${opts[$((${#opts[@]}-3))]} ${opts[$((${#opts[@]}-2))]})
|
||||
fi
|
||||
|
||||
local c_short c_long c_accvals
|
||||
local len i idx0 idx1 idx2
|
||||
|
||||
case $curr in
|
||||
# Asking for accepted optvalues, e.g., `out:`
|
||||
:)
|
||||
len=${#opts[@]}
|
||||
i=0
|
||||
|
||||
while [[ $i -lt $len ]]
|
||||
do
|
||||
idx0=$((i / 3 * 3))
|
||||
idx1=$((idx0 + 1))
|
||||
idx2=$((idx1 + 1))
|
||||
c_short=${opts[idx0]}
|
||||
c_long=${opts[idx1]}
|
||||
c_accvals=${opts[idx2]}
|
||||
(false \
|
||||
|| __is_short_or_long $prev ${c_short} ${c_long} \
|
||||
|| false) \
|
||||
&& COMPREPLY=( $(compgen -W "${c_accvals}" --) ) \
|
||||
&& return 0
|
||||
((i+=3))
|
||||
done
|
||||
|
||||
return 124
|
||||
;;
|
||||
|
||||
*)
|
||||
# When in a incomplete opt value, e.g., `--check:of`
|
||||
if [[ $prev == : ]]
|
||||
then
|
||||
len=${#opts[@]}
|
||||
i=0
|
||||
while [[ $i -lt $len ]]
|
||||
do
|
||||
idx0=$((i / 3 * 3))
|
||||
idx1=$((idx0 + 1))
|
||||
idx2=$((idx1 + 1))
|
||||
c_short=${opts[idx0]}
|
||||
c_long=${opts[idx1]}
|
||||
c_accvals=${opts[idx2]}
|
||||
(false \
|
||||
|| __is_short_or_long $prevprev ${c_short} ${c_long} \
|
||||
|| false) \
|
||||
&& COMPREPLY=( $(compgen -W "${c_accvals}" -- ${curr}) ) \
|
||||
&& return 0
|
||||
((i+=3))
|
||||
done
|
||||
return 124
|
||||
fi
|
||||
|
||||
# When in a complete optname, might need optvalue, e.g., `--check`
|
||||
if [[ $curr =~ ^--?[:()a-zA-Z]+$ ]]
|
||||
then
|
||||
len=${#opts[@]}
|
||||
i=0
|
||||
while [[ $i -lt $len ]]
|
||||
do
|
||||
idx0=$(((i / 3 * 3)))
|
||||
idx1=$((idx0 + 1))
|
||||
idx2=$((idx1 + 1))
|
||||
c_short=${opts[idx0]}
|
||||
c_long=${opts[idx1]}
|
||||
c_accvals=${opts[idx2]}
|
||||
|
||||
if __is_short_or_long $curr ${c_short} ${c_long}
|
||||
then
|
||||
if [[ ! -z $c_accvals ]]
|
||||
then
|
||||
COMPREPLY=( $(compgen -W "${curr}:" -- ${curr}) ) \
|
||||
&& compopt -o nospace \
|
||||
&& return 0
|
||||
else
|
||||
COMPREPLY=( $(compgen -W "${curr}" -- ${curr}) ) \
|
||||
&& return 0
|
||||
fi
|
||||
fi
|
||||
|
||||
((i+=3))
|
||||
done # while
|
||||
|
||||
if true
|
||||
then
|
||||
COMPREPLY=( $(compgen -W "${candids[*]}" -- "$curr") )
|
||||
compopt -o nospace
|
||||
return 0
|
||||
fi
|
||||
|
||||
# When in an incomplete optname, e.g., `--chec`
|
||||
elif [[ $curr =~ ^--?[^:]* ]]
|
||||
then
|
||||
if true
|
||||
then
|
||||
COMPREPLY=( $(compgen -W "${candids[*]}" -- "$curr") )
|
||||
compopt -o nospace
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
|
||||
if true
|
||||
then
|
||||
compopt -o filenames
|
||||
COMPREPLY=( $(compgen -f -- "$curr") )
|
||||
compopt -o nospace
|
||||
return 0
|
||||
fi
|
||||
|
||||
;;
|
||||
esac
|
||||
return 0
|
||||
|
||||
} &&
|
||||
complete -F _nimsuggest nimsuggest
|
||||
|
||||
# ex: filetype=sh
|
||||
Reference in New Issue
Block a user