mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 06:32:05 +03:00
347cca6d9b
This patch moves majority of the bash completion logic from Bash to Haskell taking advantage of the environment variables exposed by the `complete` builtin to infer and suggest possible outputs. Co-authored-by: sshah1 <saatvik.shah@imc.com>
6 lines
90 B
Plaintext
Executable File
6 lines
90 B
Plaintext
Executable File
function _wasp {
|
|
wasp completion:list
|
|
}
|
|
|
|
complete -o default -o nospace -C _wasp wasp
|