mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
reinstate VBox* completions
Commits48aa92900
and77d4d21ca
each added two files with the same name differing only in letter case. That causes problems on systems like macOS and MS Windows. Remove the lowercase file names. Anyone needing those completions can do (same for VBoxHeadless): function vboxsdl --wraps VBoxSDL VBoxSDL $argv end
This commit is contained in:
parent
a70ed0282b
commit
1f2432d63a
2 changed files with 46 additions and 0 deletions
12
share/completions/VBoxHeadless.fish
Normal file
12
share/completions/VBoxHeadless.fish
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
complete -c VBoxHeadless -l startvm -o startvm -s s -x -d "Start given VM" -a "(__fish_print_VBox_vms)"
|
||||||
|
|
||||||
|
complete -c VBoxHeadless -l vrde -o vrde -s v -d "Enable or disamble VRDE server or don't change setting" -a "on off config"
|
||||||
|
complete -c VBoxHeadless -l vrdeproperty -o vrdeproperty -s e -x -d "Set VRDE property"
|
||||||
|
complete -c VBoxHeadless -l settingspw -x -d "Specify settings password"
|
||||||
|
complete -c VBoxHeadless -l settingspwfile -f -d "Specify file containing setting password"
|
||||||
|
complete -c VBoxHeadless -l start-paused -o start-paused -d "Start VM in paused state"
|
||||||
|
complete -c VBoxHeadless -l capture -o capture -s c -x -d "Record VM screen ouput to file"
|
||||||
|
complete -c VBoxHeadless -l width -s w -x -d "Frame width when recording"
|
||||||
|
complete -c VBoxHeadless -l height -s h -x -d "Frame height when recording"
|
||||||
|
complete -c VBoxHeadless -l bitrate -s r -x -d "Recording bit rate when recording"
|
||||||
|
complete -c VBoxHeadless -l filename -s f -f -d "File name when recording"
|
34
share/completions/VBoxSDL.fish
Normal file
34
share/completions/VBoxSDL.fish
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
complete -c VBoxSDL -l startvm -x -d "Set virtual machine to start" -a "(__fish_print_VBox_vms)"
|
||||||
|
|
||||||
|
complete -c VBoxSDL -l seperate -d "Run separate VM process or attach to a running VM"
|
||||||
|
complete -c VBoxSDL -l hda -f -d "Set temporary first hard disk"
|
||||||
|
complete -c VBoxSDL -l fda -f -d "Set temporary first floppy disk"
|
||||||
|
complete -c VBoxSDL -l cdrom -r -d "Set temporary CDROM/DVD" -a "none\tunmount"
|
||||||
|
complete -c VBoxSDL -l boot -x -d "Set temporary boot device" -a "a\tFloppy c\tFirst\ HD d\tDVD n\tNetwork"
|
||||||
|
complete -c VBoxSDL -l memory -x -d "Set temporary memory size in MB"
|
||||||
|
complete -c VBoxSDL -l vram -x -d "Set temporary video memory size in MB"
|
||||||
|
complete -c VBoxSDL -l fullscreen -d "Start VM in fullscreen mode"
|
||||||
|
complete -c VBoxSDL -l fullscreenresize -d "Resize guest on fullscreen"
|
||||||
|
complete -c VBoxSDL -l fixedmode -r -d "Use fixed SDL video mode with given width height and bit/pixel"
|
||||||
|
complete -c VBoxSDL -l nofstoggle -d "Forbid switching to/from fullscreen mode"
|
||||||
|
complete -c VBoxSDL -l noresize -d "Make SDL frame non resizable"
|
||||||
|
complete -c VBoxSDL -l nohostkey -d "Disable all hoskey combinations"
|
||||||
|
complete -c VBoxSDL -l nohostkeys -d "Disable specific hostkey combinations"
|
||||||
|
complete -c VBoxSDL -l nograbonclick -d "Disable mouse/keyboard grabbing on mouse click w/o additions"
|
||||||
|
complete -c VBoxSDL -l detecthostkey -d "Get hostkey identifier and modifier state"
|
||||||
|
complete -c VBoxSDL -l hostkey -r -d "Set host key to values obtained using --detecthostkey"
|
||||||
|
complete -c VBoxSDL -l termacpi -d "Send APCI power button when closing window"
|
||||||
|
complete -c VBoxSDL -l vrdp -d "Listen for VRDP connexions on if one of specified"
|
||||||
|
complete -c VBoxSDL -l discardstate -d "Discard saved state (if present) and revert to last snapshot (if present)"
|
||||||
|
complete -c VBoxSDL -l settingspw -x -d "Specify settings password"
|
||||||
|
complete -c VBoxSDL -l settingspwfile -f -d "Specify file containing setting password"
|
||||||
|
complete -c VBoxSDL -l rowr0 -d "Enable raw ring 3"
|
||||||
|
complete -c VBoxSDL -l rowr3 -d "Enable raw ring 0"
|
||||||
|
complete -c VBoxSDL -l patm -d "Enable PATM"
|
||||||
|
complete -c VBoxSDL -l csam -d "Enable CSAM"
|
||||||
|
complete -c VBoxSDL -l hwvirtex -d "Permit usage of VT-x/AMD-V"
|
||||||
|
complete -c VBoxSDL -l norowr0 -d "Disable raw ring 3"
|
||||||
|
complete -c VBoxSDL -l norowr3 -d "Disable raw ring 0"
|
||||||
|
complete -c VBoxSDL -l nopatm -d "Disable PATM"
|
||||||
|
complete -c VBoxSDL -l nocsam -d "Disable CSAM"
|
||||||
|
complete -c VBoxSDL -l nohwvirtex -d "Deny usage of VT-x/AMD-V"
|
Loading…
Reference in a new issue