aboutsummaryrefslogtreecommitdiffstats
path: root/completions
diff options
context:
space:
mode:
authorLibravatar madblobfish <madblobfish@users.noreply.github.com>2018-10-31 17:56:33 +0100
committerLibravatar madblobfish <madblobfish@users.noreply.github.com>2018-10-31 17:56:33 +0100
commit4e209073644dbe7770c3fa1270a88d314bc65cbf (patch)
treec1cb6731ac08b4cd656bd0ff3560159a150dbf42 /completions
parentMerge pull request #3033 from RyanDwyer/remove-movement-direction (diff)
downloadsway-4e209073644dbe7770c3fa1270a88d314bc65cbf.tar.gz
sway-4e209073644dbe7770c3fa1270a88d314bc65cbf.tar.zst
sway-4e209073644dbe7770c3fa1270a88d314bc65cbf.zip
improved swaymsg completions for fish
Diffstat (limited to 'completions')
-rw-r--r--completions/fish/swaymsg.fish17
1 files changed, 14 insertions, 3 deletions
diff --git a/completions/fish/swaymsg.fish b/completions/fish/swaymsg.fish
index e798db77..1e5bf3da 100644
--- a/completions/fish/swaymsg.fish
+++ b/completions/fish/swaymsg.fish
@@ -2,7 +2,18 @@
2 2
3complete -c swaymsg -s h -l help --description "Show help message and quit." 3complete -c swaymsg -s h -l help --description "Show help message and quit."
4complete -c swaymsg -s q -l quiet --description "Sends the IPC message but does not print the response from sway." 4complete -c swaymsg -s q -l quiet --description "Sends the IPC message but does not print the response from sway."
5complete -c swaymsg -s r -l raw --description "Use raw output even if using tty."
6complete -c swaymsg -s s -l socket --description "Use the specified socket path. Otherwise, swaymsg will ask where the socket is (which is the value of $SWAYSOCK, then of $I3SOCK)."
7complete -c swaymsg -s t -l type --description "Specify the type of IPC message."
8complete -c swaymsg -s v -l version --description "Print the version (of swaymsg) and quit." 5complete -c swaymsg -s v -l version --description "Print the version (of swaymsg) and quit."
6complete -c swaymsg -s r -l raw --description "Use raw output even if using tty."
7complete -c swaymsg -s s -l socket -r --description "Use the specified socket path. Otherwise, swaymsg will ask where the socket is (which is the value of $SWAYSOCK, then of $I3SOCK)."
8
9complete -c swaymsg -s t -l type -fr --description "Specify the type of IPC message."
10complete -c swaymsg -s t -l type -fra 'get_workspaces' --description "Gets a JSON-encoded list of workspaces and their status."
11complete -c swaymsg -s t -l type -fra 'get_inputs' --description "Gets a JSON-encoded list of current inputs."
12complete -c swaymsg -s t -l type -fra 'get_outputs' --description "Gets a JSON-encoded list of current outputs."
13complete -c swaymsg -s t -l type -fra 'get_tree' --description "Gets a JSON-encoded layout tree of all open windows, containers, outputs, workspaces, and so on."
14complete -c swaymsg -s t -l type -fra 'get_marks' --description "Get a JSON-encoded list of marks."
15complete -c swaymsg -s t -l type -fra 'get_bar_config' --description "Get a JSON-encoded configuration for swaybar."
16complete -c swaymsg -s t -l type -fra 'get_version' --description "Get JSON-encoded version information for the running instance of sway."
17complete -c swaymsg -s t -l type -fra 'get_binding_modes' --description "Gets a JSON-encoded list of currently configured binding modes."
18complete -c swaymsg -s t -l type -fra 'get_config' --description "Gets a JSON-encoded copy of the current configuration."
19complete -c swaymsg -s t -l type -fra 'send_tick' --description "Sends a tick event to all subscribed clients."