aboutsummaryrefslogtreecommitdiff
path: root/data/shell-completions/bash
AgeCommit message (Collapse)AuthorFilesLines
2023-09-06completions: bash: don't show json errors when completing "meson test".Luke Elliott1-7/+24
E.g. "meson test<tab>" json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
2023-09-06completions: bash: added "compile" (and "help") completion.Luke Elliott1-2/+63
2023-09-06completions: bash: fix -x<tab>.Luke Elliott1-48/+45
If x was a known short option, would complete to "-". If unknown, "--".
2023-09-06completions: bash: added a bunch of missing completion options.Luke Elliott1-42/+137
2022-09-18completions: bash: add simple init competionLiam Beguin1-1/+35
Populate the _meson-init() completion function. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2022-09-18completions: bash: define sub-commands as an arrayLiam Beguin1-20/+21
Define subcommands as an array so that they can be reused for the top-level sub-command completion. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2022-09-18completions: bash: update meson sub-command listLiam Beguin1-1/+26
Add all meson sub-commands to the autocompletion script. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2022-09-18completions: bash: add missing functionsLiam Beguin1-0/+16
Add empty functions for all commands defined in the autocompletion script. When these functions are not defined, bash raises the following error: $ meson init <TAB>-bash: _meson-init: command not found Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2022-09-18completions: bash: order function definitions like in helpLiam Beguin1-44/+44
Move _meson-introspect() to follow the command list defined at the top of the script which follows the help message order. Signed-off-by: Liam Beguin <liambeguin@gmail.com>
2019-03-08bash/zsh: drop completion for deprecated commandEric Engestrom1-26/+1
2019-02-20add Bash completion scriptEric Engestrom1-0/+441