Compare commits

..

No commits in common. "03bae0bf3f9c4ab894f1f11a31ffe7a1e1029879" and "24e22843b96588773bed3c139db94701ca605c32" have entirely different histories.

2 changed files with 285 additions and 718 deletions

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,7 @@
# Description # Description
# ----------- # -----------
# #
# Completion script for Node.js v26.4.0 (https://nodejs.org) # Completion script for Node.js v26.1.0 (https://nodejs.org)
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Authors # Authors
@ -87,19 +87,6 @@ _node() {
) )
fi fi
local -a inspect_options=()
if [[ "$words[2]" == 'inspect' ]]; then
inspect_options+=(
'*--probe[source location of the probe]:location:_files'
'--expr[expression to evaluate of the preceding --probe each time execution reaches it]:expr'
'--max-hit[per-probe limit on evaluated hits, when not specified, there is no limit]::num'
'--json[output JSON, when not specified, human-readable text]'
'--preview[include V8 object previews in JSON output]'
'--timeout[global session timeout(default 30000ms)]:msecs'
'--port[inspector port for the debuggee(default or 0 use random port)]:port'
)
fi
local ret=1 local ret=1
_arguments \ _arguments \
@ -287,7 +274,6 @@ _node() {
'--watch-preserve-output[preserve outputs on watch mode restart]' \ '--watch-preserve-output[preserve outputs on watch mode restart]' \
'--zero-fill-buffers[automatically zero-fill all newly allocated Buffer and SlowBuffer instances]' \ '--zero-fill-buffers[automatically zero-fill all newly allocated Buffer and SlowBuffer instances]' \
$v8_options[@] \ $v8_options[@] \
$inspect_options[@] \
'(- 1 *)'{-h,--help}'[print node command line options]' \ '(- 1 *)'{-h,--help}'[print node command line options]' \
'(- 1 *)'{-v,--version}'[print Node.js version]' \ '(- 1 *)'{-v,--version}'[print Node.js version]' \
'*: :_node_args' && ret=0 '*: :_node_args' && ret=0