]> git.sur5r.net Git - i3/i3/blobdiff - CMDMODE
docs: merge spelling and grammar fixes by sasha (Thanks!)
[i3/i3] / CMDMODE
diff --git a/CMDMODE b/CMDMODE
index 7d8f6f23a1426f2803d5e03e8d977ec2751dcb02..95cb5bc178cd90d504d4938095170ed2e23bb880 100644 (file)
--- a/CMDMODE
+++ b/CMDMODE
@@ -2,7 +2,8 @@
 - Command mode
 ---------------------
 
-This is the grammar for the command mode (your configuration file uses these commands, too).
+This is the grammar for the 'command mode' (your configuration file
+uses these commands, too).
 
 left  := <h> | <cursor-left>
 right := <l> | <cursor-right>
@@ -17,15 +18,17 @@ cmd     := [ <times> ] [ <move> | <snap> ] <where>
 with    := <w> { [ <times> ] <where> }+ <space> <cmd>
 jump    := [ "<window class>[/<window title>]" | <workspace> [ <column> <row> ] ]
 focus   := focus [ <times> | floating | tiling | ft ]
-(travels the focus stack backwards the given amount of times (by default 1), so
- it selects the window which had the focus before you focused the current one when
- specifying "focus 1".
- The special values 'floating' (select the next floating window), 'tiling'
- (select the next tiling window), 'ft' (if the current window is floating,
- select the next tiling window and vice-versa) are also valid)
+  (travels the focus stack backwards, <times> number of times (by default 1).
+   So by specifying "focus 1" it selects the window which last had the focus
+   before you focused the current one window.
+   The following 3 special values are also valid:
+    'floating' (select the next floating window).
+      'tiling' (select the next tiling window).
+          'ft' (toggle tiling/floating: if the current window is floating,
+                select the next tiling window and vice-versa)
 special := [ exec <path> | kill | exit | restart ]
 
-input := [ <cmd> | <with> | <jump> | <focus> | <special> ]
+input   := [ <cmd> | <with> | <jump> | <focus> | <special> ]
 
 you can cancel command mode by pressing escape anytime.