From 08b75d2358424dfb057ee3ead285a2e0bc1d007b Mon Sep 17 00:00:00 2001 From: takeokunn Date: Sat, 2 Oct 2021 08:47:09 +0900 Subject: [PATCH] Add sbcl completion --- share/completions/sbcl.fish | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 share/completions/sbcl.fish diff --git a/share/completions/sbcl.fish b/share/completions/sbcl.fish new file mode 100644 index 000000000..ea45440f6 --- /dev/null +++ b/share/completions/sbcl.fish @@ -0,0 +1,17 @@ +complete -c sbcl -l help -d "Print this message and exit." +complete -c sbcl -l version -d "Print version information and exit." +complete -c sbcl -l core -d "Use the specified core file instead of the default." +complete -c sbcl -l dynamic-space-size -d "Size of reserved dynamic space in megabytes." +complete -c sbcl -l control-stack-size -d "Size of reserved control stack in megabytes." +complete -c sbcl -l tls-limit -d "Maximum number of thread-local symbols." +complete -c sbcl -l sysinit -d "System-wide init-file to use instead of default." +complete -c sbcl -l userinit -d "Per-user init-file to use instead of default." +complete -c sbcl -l no-sysinit -d "Inhibit processing of any system-wide init-file." +complete -c sbcl -l no-userinit -d "Inhibit processing of any per-user init-file." +complete -c sbcl -l disable-debugger -d "Invoke sb-ext:disable-debugger." +complete -c sbcl -l noprint -d "Run a Read-Eval Loop without printing results." +complete -c sbcl -l script -d "Skip #! line, disable debugger, avoid verbosity." +complete -c sbcl -l quit -d "Exit with code 0 after option processing." +complete -c sbcl -l non-interactive -d "Sets both --quit and --disable-debugger." +complete -c sbcl -l eval -d "Form to eval when processing this option." +complete -c sbcl -l load -d "File to load when processing this option."