aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaiyu <taiyu.len@gmail.com>2015-09-06 06:52:20 -0700
committertaiyu <taiyu.len@gmail.com>2015-09-06 06:52:20 -0700
commit3e9cdfd6a3bcb696ed15968c949a6f6fd7dae394 (patch)
tree77aa4aba2b690f06308ee676989be39fb9852f70
parentf25c6b312b2f4176a1936436e23140c791919ceb (diff)
downloadsway-3e9cdfd6a3bcb696ed15968c949a6f6fd7dae394.tar.xz
man page
-rw-r--r--sway.5.txt14
-rw-r--r--sway/commands.c2
2 files changed, 12 insertions, 4 deletions
diff --git a/sway.5.txt b/sway.5.txt
index ae0bb3a3..595333c4 100644
--- a/sway.5.txt
+++ b/sway.5.txt
@@ -64,11 +64,19 @@ Commands
Toggles fullscreen status for the focused view.
**gaps** <amount>::
- Adds _amount_ pixels between each view, and around each output.
+ Sets _amount_ pixels as the gap between each view, and around each
+ workspace.
**gaps** <inner|outer> <amount>::
- Adds _amount_ pixels as an _inner_ or _outer_ gap, where the former affects
- spacing between views and the latter affects the space around each output.
+ Sets _amount_ pixels as the _inner_ or _outer_ gap, where the former affects
+ spacing between views and the latter affects the space around each
+ workspace.
+
+**gaps** <inner|outer> <all|workspace|current> <set|plus|minus> <amount>::
+ Changes the gaps for the _inner_ or _outer_ gap. _all_ changes the gaps for
+ all views or workspace, _workspace_ changes gaps for all views in current
+ workspace, or current workspace, and _current_ changes gaps for the current
+ view or workspace.
**kill**::
Closes the currently focused view.
diff --git a/sway/commands.c b/sway/commands.c
index ffe7faa4..5c782e99 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -570,7 +570,7 @@ static bool cmd_gaps(struct sway_config *config, int argc, char **argv) {
target = CURRENT;
} else if (strcasecmp(target_str, "all") == 0) {
target = ALL;
- } else if (strcasecmp(target_str, "workspace") == 0){
+ } else if (strcasecmp(target_str, "workspace") == 0) {
if (inout == OUTER) {
target = CURRENT;
} else {