diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2023-04-19 11:31:42 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2023-04-19 11:31:42 +0900 |
| commit | e797437fe5fd6940bad74bf1af3adc2dbbfa551b (patch) | |
| tree | ec9a23c066607c9e98e75e6bd4b525ff63ad7977 | |
| parent | Merge pull request #1003 from notmike-5/master (diff) | |
| download | zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar.gz zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar.bz2 zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar.lz zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar.xz zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.tar.zst zsh-completions-e797437fe5fd6940bad74bf1af3adc2dbbfa551b.zip | |
Update node.js completion for version 20.0.0
| -rw-r--r-- | src/_node | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -28,7 +28,7 @@ # Description # ----------- # -# Completion script for Node.js v19.7.0 (https://nodejs.org) +# Completion script for Node.js v20.0.0 (https://nodejs.org) # # ------------------------------------------------------------------------------ # Authors @@ -68,6 +68,9 @@ _arguments -C \ '-[script read from stdin (default; interactive mode if a tty)]' \ '--[indicate the end of node options]' \ '--abort-on-uncaught-exception[aborting instead of exiting causes a core file to be generated for analysis]' \ + '--allow-child-process[allow use of child process when any permissions are set]' \ + '--allow-fs-read=[allow permissions to read the filesystem]: :_files' \ + '--allow-fs-write=[allow permissions to write in the filesystem]:_files' \ '--build-snapshot[generate a snapshot blob when the process exits]' \ '--completion-bash[print source-able bash completion script]' \ '--cpu-prof[Start the V8 CPU profiler on start up]' \ @@ -86,10 +89,11 @@ _arguments -C \ '--experimental-import-meta-resolve[experimental ES Module import.meta.resolve() support]' \ '(--loader --experimental-loader)'{--loader,--experimental-loader}'=[Specify the module of a custom ECMAScript Module loader]: :_files' \ '--experimental-network-imports[experimental https support for the ES Module loader]' \ + '--experimental-permission[enable the permission system]' \ '--experimental-policy=[security policy file]: :_files' \ + '--experimental-sea-config=[generate a blob that can be embedded into the single executable application]: :_files' \ '--experimental-test-coverage[enable code coverage in the test runner]' \ '--experimental-vm-modules[experimental ES Module support in vm module]' \ - '--experimental-wasi-unstable-preview1[experimental WASI support]' \ '--experimental-wasm-modules[experimental ES module support for webassembly modules]' \ '--force-context-aware[disable loading non-context-aware addons]' \ '--force-fips[force FIPS crypto]' \ |
