mirror of
https://github.com/swaywm/sway.git
synced 2026-05-04 06:46:25 -04:00
cmd_move: allow for all i3 syntax options
This modifies cmd_move to allow for the syntax options allowed by i3. The following syntaxes are supported: - `move left|right|up|down [<amount> [px]]` - `move [--no-auto-back-and-forth] [window|container] [to] workspace <name>|next|prev|next_on_output|prev_on_output|current|number <num>` - `move [window|container] [to] output <name/id>|left|right|up|down` - `move [window|container] [to] mark <mark>` - `move workspace to [output] <name/id>|left|right|up|down` - `move [window|container] [to] [absolute] position <x> [px] <y> [px]` - `move [window|container] [to] [absolute] position center` - `move [window|container] [to] position mouse|cursor|pointer` This also allows retains the following syntax option that is not supported by i3, but is supported in sway 1.0: - `move workspace [to] output <name/id>|left|right|up|down` The changes are: - `window` and `container` are now optional - `output` is now optional for `move workspace` when `to` is given There is also stricter command checking now. If `absolute` or `--no-auto-back-and-forth` are given for commands that do not support them, it will be treated as invalid syntax instead of being silently ignored.
This commit is contained in:
parent
5e925f06e0
commit
09595da0bc
2 changed files with 122 additions and 95 deletions
|
|
@ -187,34 +187,46 @@ set|plus|minus <amount>
|
|||
*move* position cursor|mouse|pointer
|
||||
Moves the focused container to be centered on the cursor.
|
||||
|
||||
*move* container|window [to] mark <mark>
|
||||
*move* [container|window] [to] mark <mark>
|
||||
Moves the focused container to the specified mark.
|
||||
|
||||
*move* [--no-auto-back-and-forth] container|window [to] workspace [number] <name>
|
||||
*move* [--no-auto-back-and-forth] [container|window] [to] workspace [number] <name>
|
||||
Moves the focused container to the specified workspace. The string "number"
|
||||
is optional and is used to match a workspace with the same number, even if
|
||||
it has a different name.
|
||||
|
||||
*move* container|window [to] workspace prev|next|current
|
||||
*move* [container|window] [to] workspace prev|next|current
|
||||
Moves the focused container to the previous, next or current workspace on
|
||||
this output, or if no workspaces remain, the previous or next output.
|
||||
|
||||
*move* container|window [to] workspace prev_on_output|next_on_output
|
||||
*move* [container|window] [to] workspace prev_on_output|next_on_output
|
||||
Moves the focused container to the previous or next workspace on this
|
||||
output, wrapping around if already at the first or last workspace.
|
||||
|
||||
*move* container|window [to] workspace back_and_forth
|
||||
*move* [container|window] [to] workspace back_and_forth
|
||||
Moves the focused container to previously focused workspace.
|
||||
|
||||
*move* container|window|workspace [to] output <name>
|
||||
Moves the focused container or workspace to the specified output.
|
||||
*move* [container|window] [to] output <name-or-id>
|
||||
Moves the focused container to the specified output.
|
||||
|
||||
*move* container|window|workspace [to] output up|right|down|left
|
||||
Moves the focused container or workspace to next output in the specified
|
||||
*move* [container|window] [to] output up|right|down|left
|
||||
Moves the focused container to next output in the specified
|
||||
direction.
|
||||
|
||||
*move* [to] scratchpad
|
||||
Moves the focused window to the scratchpad.
|
||||
*move* [container|window] [to] scratchpad
|
||||
Moves the focused container to the scratchpad.
|
||||
|
||||
*move* workspace [to] output <name-or-id>
|
||||
Moves the focused workspace to the specified output.
|
||||
|
||||
*move* workspace to [output] <name-or-id>
|
||||
Moves the focused workspace to the specified output.
|
||||
|
||||
*move* workspace [to] output up|right|down|left
|
||||
Moves the focused workspace to next output in the specified direction.
|
||||
|
||||
*move* workspace to [output] up|right|down|left
|
||||
Moves the focused workspace to next output in the specified direction.
|
||||
|
||||
*nop* <comment>
|
||||
A no operation command that can be used to override default behaviour. The
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue