mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
add nvram completion
This commit is contained in:
parent
034aaaa62b
commit
0c4ede5627
1 changed files with 12 additions and 0 deletions
12
share/completions/nvram.fish
Normal file
12
share/completions/nvram.fish
Normal file
|
@ -0,0 +1,12 @@
|
|||
# completion for nvram (macOS)
|
||||
|
||||
function __fish_nvram_variables
|
||||
command nvram -p
|
||||
end
|
||||
|
||||
complete -c nvram -s x -f -d 'Use XML format for reading and writing variables'
|
||||
complete -c nvram -s p -f -d 'Print all of the firmware variables'
|
||||
complete -c nvram -s f -r -d 'Set firmware variables from a text file'
|
||||
complete -c nvram -s d -x -a '(__fish_nvram_variables)' -d 'Deletes the named firmware variable'
|
||||
complete -c nvram -s c -f -d 'Delete all of the firmware variable'
|
||||
complete -c nvram -x -a '(__fish_nvram_variables)'
|
Loading…
Reference in a new issue