summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-12-09 09:14:03 +0100
committerAram Drevekenin <aram@poor.dev>2022-12-09 09:14:03 +0100
commit66593ec41a1c11ed134d729e9dea291e4c4cd38f (patch)
treee5f70c3ee7cfca6299e1a9f39f51d737934b8cff /example
parent62eaea15833b34f40270dc1ce8f6d57639dc4bdd (diff)
chore(release): v0.34.0v0.34.0
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"; }
}