Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
completions: make
uuid -n
expect an argument (#643)
Before this commit, tab completion after `-n` would suggest global options, even though `-n` without an argument is an error. For the fish completions: $ configlet uuid -n[Tab] -nh (Show help) -nt (Select a track directory) -nv (Verbose level) This commit removes that completion for both the bash and fish completion scripts. The fish docs for `complete` [1] describe the relevant options as: -f or --no-files This completion may not be followed by a filename. -r or --require-parameter This completion must have an option argument, i.e. may not be followed by another option. -x or --exclusive Short for -r and -f. [1] https://fishshell.com/docs/current/cmds/complete.html Closes: #636
- Loading branch information