mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-16 15:21:14 -03:00
Change some files which have lines whose indentation is not a multiple of the 4 spaces specified in the editorconfig file. Some of these changes are fixes or clear improvements (e.g. in Rust macros which rustfmt can't format properly). Other changes don't clearly improve the code style, and in some cases it might actually get worse. The goal is to eventually be able to use our editorconfig for automated style checks, but there are a lot of cases where conforming to the limited editorconfig style spec does not make sense, so I'm not sure how useful such automated checks can be. Closes #12408
17 lines
691 B
Fish
17 lines
691 B
Fish
# i3-msg is a tool to send messages to the i3 window manager.
|
|
# See: https://i3wm.org
|
|
|
|
complete -c i3-msg -l quiet -s q -d 'Only send ipc message and suppress output'
|
|
complete -c i3-msg -l version -s v -d 'Display version number and exit'
|
|
complete -c i3-msg -l help -s h -d 'Display help and exit'
|
|
complete -c i3-msg -l socket -s s -d 'Set socket'
|
|
complete -c i3-msg -s t -x -d 'Specify ipc message type' -a '
|
|
command\t"Payload is a command"
|
|
get_workspaces\t"Get current workspace"
|
|
get_outputs\t"Get current outputs"
|
|
get_tree\t"Get layout tree"
|
|
get_marks\t"Get list of marks"
|
|
get_bar_config\t"Get list of configured binding modes"
|
|
get_version\t"Get i3 version"
|
|
'
|