summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/default.kdl12
1 files changed, 8 insertions, 4 deletions
diff --git a/example/default.kdl b/example/default.kdl
index d048b8e50..2397f5bae 100644
--- a/example/default.kdl
+++ b/example/default.kdl
@@ -9,10 +9,14 @@ keybinds {
}
resize {
bind "Ctrl n" { SwitchToMode "Normal"; }
- bind "h" "Left" { Resize "Left"; }
- bind "j" "Down" { Resize "Down"; }
- bind "k" "Up" { Resize "Up"; }
- bind "l" "Right" { Resize "Right"; }
+ bind "h" "Left" { Resize "Increase Left"; }
+ bind "j" "Down" { Resize "Increase Down"; }
+ bind "k" "Up" { Resize "Increase Up"; }
+ bind "l" "Right" { Resize "Increase Right"; }
+ bind "H" { Resize "Decrease Left"; }
+ bind "J" { Resize "Decrease Down"; }
+ bind "K" { Resize "Decrease Up"; }
+ bind "L" { Resize "Decrease Right"; }
bind "=" "+" { Resize "Increase"; }
bind "-" { Resize "Decrease"; }
}