Skip to content

Commit 488b9b0

Browse files
authored
Update some fish-sourced generated completion files (#1103)
Run `build-completions-from-pwd` from fish-shell completions Through needs-update/custom-completions/auto-generate/parse-fish.nu with https://github.com/fish-shell/fish-shell share/completions/ 9d904e111345a64eb4ff05ecd8d7737f22cfc762 Selective on which files to take over for reviewability and certain improvements
1 parent ddaa6f5 commit 488b9b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1544
-38
lines changed
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
#
22
extern "mkbundle" [
3-
3+
--cross
4+
--fetch-target
5+
--lists-targets # Show all of the available remote cross compilation targets
6+
--local-targets # Show all of the available local cross compilation targets
7+
--in-tree
8+
--managed-linker
9+
--machine-config
10+
--sdk
11+
--mono-api-struct-path
12+
--nomain # Generate the host stub without a main() function
13+
--static # Statically link to mono and glib
14+
--aot-runtime
15+
--aot-mode
416
...args
517
]

custom-completions/auto-generate/completions/mkdocs.nu

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,71 @@
11
# Show help and exit
22
extern "mkdocs" [
3-
3+
--help(-h) # Show help and exit
4+
--verbose(-v) # Enable verbose output
5+
--quiet(-q) # Silence warnings
6+
--version(-V) # Show the version and exit
7+
--clean(-c) # Remove old site_dir before building (the default)
8+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
9+
--theme(-t) # The theme to use when building your documentation
10+
--clean(-c) # Remove old site_dir before building (the default)
11+
--force # Force the push to the repository
12+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
13+
--theme(-t) # The theme to use when building your documentation
14+
--livereload # Enable the live reloading in the development server (this is the default)
15+
--no-livereload # Disable the live reloading in the development server
16+
--dirtyreload # Enable the live reloading in the development server, but only re-build files that have changed
417
...args
518
]
619

720
# Build the MkDocs documentation
821
extern "mkdocs build" [
22+
--help(-h) # Show help and exit
23+
--verbose(-v) # Enable verbose output
24+
--quiet(-q) # Silence warnings
925
--version(-V) # Show the version and exit
1026
--clean(-c) # Remove old site_dir before building (the default)
1127
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
1228
--theme(-t) # The theme to use when building your documentation
29+
--clean(-c) # Remove old site_dir before building (the default)
30+
--force # Force the push to the repository
31+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
32+
--theme(-t) # The theme to use when building your documentation
33+
--livereload # Enable the live reloading in the development server (this is the default)
34+
--no-livereload # Disable the live reloading in the development server
35+
--dirtyreload # Enable the live reloading in the development server, but only re-build files that have changed
1336
...args
1437
]
1538

1639
# Deploy your documentation to GitHub Pages
1740
extern "mkdocs gh-deploy" [
41+
--help(-h) # Show help and exit
42+
--verbose(-v) # Enable verbose output
43+
--quiet(-q) # Silence warnings
1844
--version(-V) # Show the version and exit
1945
--clean(-c) # Remove old site_dir before building (the default)
46+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
47+
--theme(-t) # The theme to use when building your documentation
48+
--clean(-c) # Remove old site_dir before building (the default)
2049
--force # Force the push to the repository
50+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
51+
--theme(-t) # The theme to use when building your documentation
52+
--livereload # Enable the live reloading in the development server (this is the default)
53+
--no-livereload # Disable the live reloading in the development server
54+
--dirtyreload # Enable the live reloading in the development server, but only re-build files that have changed
2155
...args
2256
]
2357

2458
# Run the builtin development server
2559
extern "mkdocs serve" [
60+
--help(-h) # Show help and exit
61+
--verbose(-v) # Enable verbose output
62+
--quiet(-q) # Silence warnings
2663
--version(-V) # Show the version and exit
64+
--clean(-c) # Remove old site_dir before building (the default)
65+
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
66+
--theme(-t) # The theme to use when building your documentation
67+
--clean(-c) # Remove old site_dir before building (the default)
68+
--force # Force the push to the repository
2769
--strict(-s) # Enable strict mode. This will cause MkDocs to abort the build on any warnings
2870
--theme(-t) # The theme to use when building your documentation
2971
--livereload # Enable the live reloading in the development server (this is the default)

custom-completions/auto-generate/completions/monodis.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Show help
22
extern "monodis" [
33
--help(-h) # Show help
4-
--mscorlib # Use mscorlib as the assembly name for non-corlib assemblies
4+
--mscorlib # Use \'mscorlib\' as the assembly name for non-corlib assemblies
55
--show-method-tokens # Show tokens for disassembled methods
66
--show-tokens # Show tokens for strings, types, methods, fields, ...
77
--assembly # Include Assembly table contents

custom-completions/auto-generate/completions/monop.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Specifies the assembly to use for looking up the type
22
extern "monop" [
3-
--search(-k) # Searches through all known assemblies for types containing class
3+
--search(-k) # Searches through all known assemblies for types containing \'class\
44
--refs # Print a list of the referenced assemblies for an assembly.
55
--filter-obsolete(-f) # Do not show obsolete types and members
66
--declared-only(-d) # Only show members declared in the type
Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Generate a Java ResourceBundle class
22
extern "msgfmt" [
3-
3+
--java(-j) # Generate a Java ResourceBundle class
4+
--java2 # Like --java, and assume Java2 (JDK 1.2 or higher)
5+
--csharp # Generate a .NET .dll file
6+
--csharp-resources # Generate a .NET .resources file
7+
--tcl # Generate a tcl/msgcat .msg file
8+
--qt # Generate a Qt .qm file
9+
--strict # Enable strict Uniforum mode
10+
--resource(-r) # Resource name
11+
--locale(-l) # Locale name, either language or language_COUNTRY
12+
--properties-input(-P) # Input files are in Java .properties syntax
13+
--stringtable-input # Input files are in NeXTstep/GNUstep .strings syntax
14+
--check(-c) # Perform all the checks implied by --check-format, --check-header, --check-domain
15+
--check-format # Check language dependent format strings
16+
--chack-header # Verify presence and contents of the header entry
17+
--check-domain # Check for conflicts between domain directives and the --output-file option
18+
--check-compatibility(-C) # Check that GNU msgfmt behaves like X/Open msgfmt
19+
--check-accelerators # Check presence of keyboard accelerators for menu items
20+
--use-fuzzy(-f) # Use fuzzy entries in output
21+
--no-hash # Binary file will not include the hash table
22+
--help(-h) # Display help and exit
23+
--version(-V) # Display version and exit
24+
--statistics # Print statistics about translations
25+
--verbose # Increase verbosity level
426
...args
527
]

custom-completions/auto-generate/completions/ncat.nu

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ extern "ncat" [
33
--unixsock(-U) # Use Unix domain sockets
44
--udp(-u) # Use UDP
55
--sctp # Use SCTP
6+
--vsock # Use AF_VSOCK sockets
67
--listen(-l) # Listen for connections
78
--keep-open(-k) # Accept multiple connections
89
--broker # Connection brokering
@@ -12,9 +13,10 @@ extern "ncat" [
1213
--verbose(-v) # Be verbose
1314
--crlf(-C) # Use CRLF as EOL
1415
--help(-h) # Help screen
15-
---recv-only # Only receive data
16+
--recv-only # Only receive data
1617
--send-only # Only send data
1718
--no-shutdown # Do not shutdown into half-duplex mode
19+
--nodns(-n) # Do not resolve hostnames
1820
--telnet(-t) # Answer Telnet negotiations
1921
--version # Display version
2022
...args
Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,47 @@
11
# Print help
22
extern "ncdu" [
33
--help(-h) # Print help
4+
--slow-ui-updates(-q) # Quiet mode. Refresh interval 2 seconds
5+
--fast-ui-updates # Refresh interval 10 per second
46
--version(-V) # Print version
5-
--si # Use base 10 prefixes instead of base 2
7+
--one-file-system(-x) # Same filesystem
8+
--cross-file-system # Cross filesystems
9+
--extended(-e) # Enable extended information
10+
--no-extended # Disable extended information
11+
--si # Use base 10 prefixes
12+
--no-si # Use base 2 prefixes
613
--follow-symlinks(-L) # Follow symlinks (excluding dirs)
14+
--no-follow-symlinks # Do not follow symlinks (excluding dirs)
715
--exclude-caches # Exclude dirs containing CACHEDIR.TAG
16+
--include-caches # Include dirs containing CACHEDIR.TAG
817
--confirm-quit # Prompt before exiting ncdu
18+
--no-confirm-quit # No confirmation before exiting ncdu
19+
--ignore-config # Do not load any configuration files
20+
--include-kernfs # Include Linux pseudo filesystems
21+
--exclude-kernfs # Exclude Linux pseudo filesystems
22+
--enable-shell # Enable shell spawning
23+
--disable-shell # Disable shell spawning
24+
--enable-delete # Enable built-in file deletion
25+
--disable-delete # Disable built-in file deletion
26+
--enable-refresh # Enable directory refreshing
27+
--disable-refresh # Disable directory refreshing
28+
--disk-usage # Show disk usage of files
29+
--apparent-size # Show apparent size of files
30+
--show-hidden # Show hidden and excluded files
31+
--hide-hidden # Hide hidden and excluded files
32+
--show-itemcount # Show the item counts column
33+
--hide-itemcount # Hide the item counts column
34+
--show-mtime # Show last modification time column
35+
--hide-mtime # Hide last modification time column
36+
--show-graph # Show the relative size bar column
37+
--hide-graph # Hide the relative size bar column
38+
--show-percent # Show the relative size percent column
39+
--hide-percent # Hide the relative size percent column
40+
--enable-natsort # Enable natural sort
41+
--disable-natsort # Disable natural sort
42+
--group-directories-first # Sort directories before files
43+
--no-group-directories-first # Do not sort directories before files
44+
--confirm-delete # Require a confirmation before deleting
45+
--no-confirm-delete # Do not require a confirmation before deleting
946
...args
1047
]
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Display help and exit
22
extern "nice" [
3-
3+
--help # Display help and exit
4+
--version # Display version and exit
45
...args
56
]
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Output is terse
22
extern "nmcli" [
3-
3+
--terse(-t) # Output is terse
4+
--pretty(-p) # Output is pretty
5+
--mode(-m) # Switch between tabular and multiline mode
6+
--color(-c) # Whether to use colors in output
7+
--fields(-f) # Specify the output fields
8+
--escape(-e) # Whether to escape ":" and "\\" characters
9+
--ask(-a) # Ask for missing parameters
10+
--show-secrets(-s) # Allow displaying passwords
11+
--active # List only active profiles
12+
--order # Custom connection ordering
13+
--temporary
14+
--temporary
15+
--temporary
416
...args
517
]

0 commit comments

Comments
 (0)