Skip to content

Commit b096e3c

Browse files
committed
Manually fix up generated completions with syntax errors
1 parent 8fcc961 commit b096e3c

File tree

6 files changed

+36
-36
lines changed

6 files changed

+36
-36
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ extern "as yes no" [
4242
--sectname-subst # Enable section name substitution sequences
4343
--gen-debug(-g) # Generate debugging information
4444
--gstabs # Generate STABS debugging information
45-
--gstabs+ # Generate STABS debug info with GNU extensions
45+
#--gstabs+ # Generate STABS debug info with GNU extensions
4646
--gdwarf-2 # Generate DWARF2 debugging information
4747
--gdwarf-sections # Generate per-function section names for DWARF line information
4848
--help # Show help message and exit

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ extern "curl" [
148148
--proxy-tlsv1 # Same as -1, --tlsv1 but used in HTTPS proxy context
149149
--proxy-user(-U) # Specify the user name and password to use for proxy authentication
150150
--proxy(-x) # Use the specified proxy
151-
--proxy1.0 # Use the specified HTTP 1.0 proxy
151+
#--proxy1.0 # Use the specified HTTP 1.0 proxy
152152
--proxytunnel(-p) # If HTTP proxy is used, make curl tunnel through it
153153
--pubkey # (SFTP SCP) Public key file name
154154
--quote(-Q) # (FTP SFTP) Send an arbitrary command to the remote FTP or SFTP server
@@ -197,10 +197,10 @@ extern "curl" [
197197
--tlsauthtype # Set TLS authentication type
198198
--tlspassword # Set password for use with the TLS authentication method
199199
--tlsuser # Set username for use with the TLS authentication method
200-
--tlsv1.0 # (TLS) Forces curl to use TLS version 1.0
201-
--tlsv1.1 # (TLS) Forces curl to use TLS version 1.1
202-
--tlsv1.2 # (TLS) Forces curl to use TLS version 1.2
203-
--tlsv1.3 # (TLS) Forces curl to use TLS version 1.3
200+
#--tlsv1.0 # (TLS) Forces curl to use TLS version 1.0
201+
#--tlsv1.1 # (TLS) Forces curl to use TLS version 1.1
202+
#--tlsv1.2 # (TLS) Forces curl to use TLS version 1.2
203+
#--tlsv1.3 # (TLS) Forces curl to use TLS version 1.3
204204
--tlsv1 # (SSL) Tells curl to use at least TLS version 1
205205
--tr-encoding # (HTTP) Request compressed Transfer-Encoding, uncompress on receive
206206
--trace-ascii # Enables a full trace dump of all incoming and outgoing data
@@ -373,7 +373,7 @@ extern "curl PEM, DER ENG P12" [
373373
--proxy-tlsv1 # Same as -1, --tlsv1 but used in HTTPS proxy context
374374
--proxy-user(-U) # Specify the user name and password to use for proxy authentication
375375
--proxy(-x) # Use the specified proxy
376-
--proxy1.0 # Use the specified HTTP 1.0 proxy
376+
#--proxy1.0 # Use the specified HTTP 1.0 proxy
377377
--proxytunnel(-p) # If HTTP proxy is used, make curl tunnel through it
378378
--pubkey # (SFTP SCP) Public key file name
379379
--quote(-Q) # (FTP SFTP) Send an arbitrary command to the remote FTP or SFTP server
@@ -422,10 +422,10 @@ extern "curl PEM, DER ENG P12" [
422422
--tlsauthtype # Set TLS authentication type
423423
--tlspassword # Set password for use with the TLS authentication method
424424
--tlsuser # Set username for use with the TLS authentication method
425-
--tlsv1.0 # (TLS) Forces curl to use TLS version 1.0
426-
--tlsv1.1 # (TLS) Forces curl to use TLS version 1.1
427-
--tlsv1.2 # (TLS) Forces curl to use TLS version 1.2
428-
--tlsv1.3 # (TLS) Forces curl to use TLS version 1.3
425+
#--tlsv1.0 # (TLS) Forces curl to use TLS version 1.0
426+
#--tlsv1.1 # (TLS) Forces curl to use TLS version 1.1
427+
#--tlsv1.2 # (TLS) Forces curl to use TLS version 1.2
428+
#--tlsv1.3 # (TLS) Forces curl to use TLS version 1.3
429429
--tlsv1 # (SSL) Tells curl to use at least TLS version 1
430430
--tr-encoding # (HTTP) Request compressed Transfer-Encoding, uncompress on receive
431431
--trace-ascii # Enables a full trace dump of all incoming and outgoing data

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# Name of the output file
22
extern "fsharpc" [
3-
--out: # Name of the output file
3+
#--out: # Name of the output file
44
#--target:exe # Build a console executable
55
#--target:winexe # Build a Windows executable
66
#--target:library # Build a library
77
#--target:module # Build a module that can be added to another assembly
88
#--delaysign+ # Delay-sign the assembly using only the public portion of the strong name key
99
#--delaysign- # Disable --delaysign
10-
--doc: # Write the xmldoc of the assembly to the given file
11-
--keyfile: # Specify a strong name key file
12-
--keycontainer: # Specify a strong name key container
10+
#--doc: # Write the xmldoc of the assembly to the given file
11+
#--keyfile: # Specify a strong name key file
12+
#--keycontainer: # Specify a strong name key container
1313
#--platform:x86 # Limit the platform to x86
1414
#--platform:Itanium # Limit the platform to Itanium
1515
#--platform:x64 # Limit the platform to x64
1616
#--platform:anycpu32bitpreferred # Limit the platform to anycpu32bitpreferred
1717
#--platform:anycpu # Limit the platform to anycpu (default)
1818
--nooptimizationdata # Only include optimization information for inlined constructs
1919
--nointerfacedata # Don't add a resource to the assembly containing F#-specific metadata
20-
--sig: # Print the inferred interface of the assembly to a file
21-
--reference: # Reference an assembly
22-
--win32res: # Specify a Win32 resource file (.res)
23-
--win32manifest: # Specify a Win32 manifest file
20+
#--sig: # Print the inferred interface of the assembly to a file
21+
#--reference: # Reference an assembly
22+
#--win32res: # Specify a Win32 resource file (.res)
23+
#--win32manifest: # Specify a Win32 manifest file
2424
--nowin32manifest # Do not include the default Win32 manifest
25-
--resource: # Embed the specified managed resource
26-
--linkresource: # Link the specified resource to this assembly
25+
#--resource: # Embed the specified managed resource
26+
#--linkresource: # Link the specified resource to this assembly
2727
#--debug+(-g) # Emit debug information
2828
#--debug- # Disable --debug
2929
#--optimize+(-O) # Enable optimizations
@@ -38,26 +38,26 @@ extern "fsharpc" [
3838
#--warnaserror- # Disable --warnaserror
3939
#--warnaserror+: # Report specific warnings as errors
4040
#--warnaserror-: # Disable --warnaserror:
41-
--nowarn: # Disable specific warning messages
42-
--warnon: # Enable specific warnings that may be off by default
41+
#--nowarn: # Disable specific warning messages
42+
#--warnon: # Enable specific warnings that may be off by default
4343
#--consolecolors+ # Output warning and error messages in color
4444
#--consolecolors- # Disable --consolecolors
4545
#--checked+ # Generate overflow checks
4646
#--checked- # Disable --checked
47-
--define: # Define conditional compilation symbols
47+
#--define: # Define conditional compilation symbols
4848
--mlcompatibility # Ignore ML compatibility warnings
4949
--nologo # Suppress compiler copyright message
5050
--help(-?) # Display this usage message
5151
--codepage: # Specify the codepage used to read source files
5252
--utf8output # Output messages in UTF-8 encoding
5353
--fullpaths # Output messages with fully qualified paths
54-
--lib: # Specify a directory for include path for resolving source files and assemblies
54+
#--lib: # Specify a directory for include path for resolving source files and assemblies
5555
--simpleresolution # Resolve assembly references using directory-based rules
5656
--baseaddress: # Base address for the library to be built
5757
--noframework # Do not reference the default CLI assemblies by default
5858
--standalone # Statically link F# library and referenced DLLs into the generated assembly
5959
--staticlink: # Statically link the assembly and referenced DLLs that depend on this assembly
60-
--pdb: # Name the output debug file
60+
#--pdb: # Name the output debug file
6161
#--highentropyva+ # Enable high-entropy ASLR
6262
#--highentropyva- # Disable --highentropyva
6363
--subsystemversion: # Specify subsystem version of this assembly

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Use the given file on startup
22
extern "fsharpi" [
3-
--use: # Use the given file on startup
4-
--load: # #load the given file on startup
5-
--reference: # Reference an assembly
3+
#--use: # Use the given file on startup
4+
#--load: # #load the given file on startup
5+
#--reference: # Reference an assembly
66
#--debug+(-g) # Emit debug information
77
#--debug- # Disable --debug
88
#--optimize+(-O) # Enable optimizations
@@ -17,20 +17,20 @@ extern "fsharpi" [
1717
#--warnaserror- # Disable --warnaserror
1818
#--warnaserror+: # Report specific warnings as errors
1919
#--warnaserror-: # Disable --warnaserror:
20-
--nowarn: # Disable specific warning messages
21-
--warnon: # Enable specific warnings that may be off by default
20+
#--nowarn: # Disable specific warning messages
21+
#--warnon: # Enable specific warnings that may be off by default
2222
#--consolecolors+ # Output warning and error messages in color
2323
#--consolecolors- # Disable --consolecolors
2424
#--checked+ # Generate overflow checks
2525
#--checked- # Disable --checked
26-
--define: # Define conditional compilation symbols
26+
#--define: # Define conditional compilation symbols
2727
--mlcompatibility # Ignore ML compatibility warnings
2828
--nologo # Suppress compiler copyright message
2929
--help(-?) # Display this usage message
30-
--codepage: # Specify the codepage used to read source files
30+
#--codepage: # Specify the codepage used to read source files
3131
--utf8output # Output messages in UTF-8 encoding
3232
--fullpaths # Output messages with fully qualified paths
33-
--lib: # Specify a dir for the include path for source files and assemblies
33+
#--lib: # Specify a dir for the include path for source files and assemblies
3434
--simpleresolution # Resolve assembly references using directory-based rules
3535
--targetprofile: # Specify target framework profile: mscorlib, netcore or netstandard
3636
--noframework # Do not reference the default CLI assemblies by default

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ extern "less" [
5959

6060
# Characters to scroll on left/right arrows
6161
extern "less 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19" [
62-
--help(-\?) # Display help and exit
62+
--help(-?) # Display help and exit
6363
--search-skip-screen(-a) # Search after end of screen
6464
--auto-buffers(-B) # Disable automatic buffer allocation
6565
--clear-screen(-c) # Repaint from top

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ extern "mysql" [
5858

5959
# Enable or disable LOCAL capability for LOAD DATA INFILE
6060
extern "mysql 0 1" [
61-
--help(-\?) # Display a help message
61+
--help(-?) # Display a help message
6262
--abort-source-on-error # Abort source filename operations in case of errors
6363
--auto-rehash # Enable automatic rehashing
6464
--auto-vertical-output # Automatically switch to vertical output

0 commit comments

Comments
 (0)