sway/completions/bash/swaymsg

66 lines
952 B
Plaintext
Raw Normal View History

2018-07-27 15:31:18 +00:00
# swaymsg(1) completion
_swaymsg()
{
2022-03-27 08:50:12 +00:00
local cur prev types short long
2018-07-27 15:31:18 +00:00
_get_comp_words_by_ref cur prev
types=(
'get_workspaces'
'get_seats'
'get_inputs'
'get_outputs'
'get_tree'
'get_marks'
'get_bar_config'
'get_version'
2018-07-18 10:52:29 +00:00
'get_binding_modes'
'get_binding_state'
2018-07-18 10:52:29 +00:00
'get_config'
2018-07-18 11:30:39 +00:00
'send_tick'
'subscribe'
2018-07-27 15:31:18 +00:00
)
short=(
-h
-m
-p
2018-07-27 15:31:18 +00:00
-q
-r
-s
-t
-v
)
long=(
--help
--monitor
--pretty
2018-07-27 15:31:18 +00:00
--quiet
--raw
--socket
--type
--version
2018-07-27 15:31:18 +00:00
)
case $prev in
-s|--socket)
_filedir
return
;;
-t|--type)
COMPREPLY=($(compgen -W "${types[*]}" -- "$cur"))
return
;;
esac
if [[ $cur == --* ]]; then
COMPREPLY=($(compgen -W "${long[*]}" -- "$cur"))
else
COMPREPLY=($(compgen -W "${short[*]}" -- "$cur"))
COMPREPLY+=($(compgen -W "${long[*]}" -- "$cur"))
fi
} &&
complete -F _swaymsg swaymsg