2019-07-31 01:09:20 +00:00
# Completions for the F# Interactive
# See: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/fsharp-interactive-options
# Input files
complete -c fsharpi -l "use:" -d "Use the given file on startup as initial input"
complete -c fsharpi -l "load:" -d "#load the given file on startup"
complete -c fsharpi -o "r:" -l "reference:" -d "Reference an assembly"
# Code generation
complete -c fsharpi -s g -o "g+" -l debug -l "debug+" -d "Emit debug information"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -o g- -l debug- -d "Disable --debug"
2019-07-31 01:09:20 +00:00
for arguments in full pdbonly portable embedded
complete -c fsharpi -o " g: $arguments " -l " debug: $arguments " -d "Specify debugging type"
end
complete -c fsharpi -s O -o "O+" -l optimize -l "optimize+" -d "Enable optimizations"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -o O- -l optimize- -d "Disable --optimize"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l tailcalls -l "tailcalls+" -d "Enable or disable tailcalls"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l tailcalls- -d "Disable --tailcalls"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l deterministic -l "deterministic+" -d "Produce a deterministic assembly (including module version GUID and timestamp)"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l deterministic- -d "Disable --deterministic"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l crossoptimize -l "crossoptimize+" -d "Enable or disable cross-module optimizations"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l crossoptimize- -d "Disable --crossoptimize"
2019-07-31 01:09:20 +00:00
# Errors and warnings
complete -c fsharpi -l warnaserror -l "warnaserror+" -d "Report all warnings as errors"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l warnaserror- -d "Disable --warnaserror"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l "warnaserror:" -l "warnaserror+:" -d "Report specific warnings as errors"
complete -c fsharpi -l "warnaserror-:" -d "Disable --warnaserror:"
for warning_level in ( seq 0 5 )
complete -c fsharpi -l " warn: $warning_level " -d " Set a warning level to $warning_level "
end
complete -c fsharpi -l "nowarn:" -d "Disable specific warning messages"
complete -c fsharpi -l "warnon:" -d "Enable specific warnings that may be off by default"
complete -c fsharpi -l consolecolors -l "consolecolors+" -d "Output warning and error messages in color"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l consolecolors- -d "Disable --consolecolors"
2019-07-31 01:09:20 +00:00
# Language
complete -c fsharpi -l checked -l "checked+" -d "Generate overflow checks"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l checked- -d "Disable --checked"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -o "d:" -l "define:" -d "Define conditional compilation symbols"
complete -c fsharpi -l mlcompatibility -d "Ignore ML compatibility warnings"
# Miscellaneous
complete -c fsharpi -l nologo -d "Suppress compiler copyright message"
complete -c fsharpi -s "?" -l help -d "Display this usage message"
# Advanced
complete -c fsharpi -l "codepage:" -d "Specify the codepage used to read source files"
complete -c fsharpi -l utf8output -d "Output messages in UTF-8 encoding"
complete -c fsharpi -l fullpaths -d "Output messages with fully qualified paths"
complete -c fsharpi -o "I:" -l "lib:" -d "Specify a directory for the include path which is used to resolve source files and assemblies"
complete -c fsharpi -l simpleresolution -d "Resolve assembly references using directory-based rules rather than MSBuild resolution"
complete -c fsharpi -l "targetprofile:" -d "Specify target framework profile of this assembly. Valid values are mscorlib, netcore or netstandard. Default - mscorlib"
complete -c fsharpi -l noframework -d "Do not reference the default CLI assemblies by default"
complete -c fsharpi -l exec -d "Exit fsi after loading the files or running the .fsx script given on the command line"
complete -c fsharpi -l gui -l "gui+" -d "Execute interactions on a Windows Forms event loop (on by default)"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l gui- -d "Disable --gui"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l quiet -d "Suppress fsi writing to stdout"
complete -c fsharpi -l readline -l "readline+" -d "Support TAB completion in console (on by default)"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l readline- -d "Disable --readline"
complete -c fsharpi -l quotations-debug -l "quotations-debug+" -d "Emit debug information in quotations"
complete -c fsharpi -l quotations-debug- -d "Disable --quotations-debug"
2019-07-31 01:09:20 +00:00
complete -c fsharpi -l shadowcopyreferences -l "shadowcopyreferences+" -d "Prevents references from being locked by the F# Interactive process"
2020-03-09 18:36:12 +00:00
complete -c fsharpi -l shadowcopyreferences- -d "Disable --shadowcopyreferences"