diff --git a/config.kdl b/config.kdl index 8306308..4b399d1 100644 --- a/config.kdl +++ b/config.kdl @@ -9,23 +9,23 @@ keybinds clear-defaults=true { } resize { bind "Ctrl n" { SwitchToMode "Normal"; } - 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 "Left" { Resize "Increase Left"; } + bind "Down" { Resize "Increase Down"; } + bind "Up" { Resize "Increase Up"; } + bind "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"; } } pane { bind "Ctrl p" { SwitchToMode "Normal"; } - bind "h" "Left" { MoveFocus "Left"; } - bind "l" "Right" { MoveFocus "Right"; } - bind "j" "Down" { MoveFocus "Down"; } - bind "k" "Up" { MoveFocus "Up"; } + bind "Left" { MoveFocus "Left"; } + bind "Right" { MoveFocus "Right"; } + bind "Down" { MoveFocus "Down"; } + bind "Up" { MoveFocus "Up"; } bind "p" { SwitchFocus; } bind "n" { NewPane; SwitchToMode "Normal"; } bind "d" { NewPane "Down"; SwitchToMode "Normal"; } @@ -41,16 +41,16 @@ keybinds clear-defaults=true { bind "Ctrl h" { SwitchToMode "Normal"; } bind "n" "Tab" { MovePane; } bind "p" { MovePaneBackwards; } - bind "h" "Left" { MovePane "Left"; } - bind "j" "Down" { MovePane "Down"; } - bind "k" "Up" { MovePane "Up"; } - bind "l" "Right" { MovePane "Right"; } + bind "Left" { MovePane "Left"; } + bind "Down" { MovePane "Down"; } + bind "Up" { MovePane "Up"; } + bind "Right" { MovePane "Right"; } } tab { bind "Ctrl t" { SwitchToMode "Normal"; } bind "r" { SwitchToMode "RenameTab"; TabNameInput 0; } - bind "h" "Left" "Up" "k" { GoToPreviousTab; } - bind "l" "Right" "Down" "j" { GoToNextTab; } + bind "Left" "Up" { GoToPreviousTab; } + bind "Right" "Down" { GoToNextTab; } bind "n" { NewTab; SwitchToMode "Normal"; } bind "x" { CloseTab; SwitchToMode "Normal"; } bind "s" { ToggleActiveSyncTab; SwitchToMode "Normal"; } @@ -73,10 +73,10 @@ keybinds clear-defaults=true { bind "e" { EditScrollback; SwitchToMode "Normal"; } bind "s" { SwitchToMode "EnterSearch"; SearchInput 0; } bind "Ctrl c" { ScrollToBottom; SwitchToMode "Normal"; } - bind "j" "Down" { ScrollDown; } - bind "k" "Up" { ScrollUp; } - bind "Ctrl f" "PageDown" "Right" "l" { PageScrollDown; } - bind "Ctrl b" "PageUp" "Left" "h" { PageScrollUp; } + bind "Down" { ScrollDown; } + bind "Up" { ScrollUp; } + bind "Ctrl f" "PageDown" "Right" { PageScrollDown; } + bind "Ctrl b" "PageUp" "Left" { PageScrollUp; } bind "d" { HalfPageScrollDown; } bind "u" { HalfPageScrollUp; } // uncomment this and adjust key if using copy_on_select=false @@ -85,10 +85,10 @@ keybinds clear-defaults=true { search { bind "Ctrl s" { SwitchToMode "Normal"; } bind "Ctrl c" { ScrollToBottom; SwitchToMode "Normal"; } - bind "j" "Down" { ScrollDown; } - bind "k" "Up" { ScrollUp; } - bind "Ctrl f" "PageDown" "Right" "l" { PageScrollDown; } - bind "Ctrl b" "PageUp" "Left" "h" { PageScrollUp; } + bind "Down" { ScrollDown; } + bind "Up" { ScrollUp; } + bind "Ctrl f" "PageDown" "Right" { PageScrollDown; } + bind "Ctrl b" "PageUp" "Left" { PageScrollUp; } bind "d" { HalfPageScrollDown; } bind "u" { HalfPageScrollUp; } bind "n" { Search "down"; } @@ -135,10 +135,6 @@ keybinds clear-defaults=true { bind "Right" { MoveFocus "Right"; SwitchToMode "Normal"; } bind "Down" { MoveFocus "Down"; SwitchToMode "Normal"; } bind "Up" { MoveFocus "Up"; SwitchToMode "Normal"; } - bind "h" { MoveFocus "Left"; SwitchToMode "Normal"; } - bind "l" { MoveFocus "Right"; SwitchToMode "Normal"; } - bind "j" { MoveFocus "Down"; SwitchToMode "Normal"; } - bind "k" { MoveFocus "Up"; SwitchToMode "Normal"; } bind "o" { FocusNextPane; } bind "d" { Detach; } bind "Space" { NextSwapLayout; } @@ -150,10 +146,10 @@ keybinds clear-defaults=true { bind "Alt n" { NewPane; } bind "Alt i" { MoveTab "Left"; } bind "Alt o" { MoveTab "Right"; } - bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; } - bind "Alt l" "Alt Right" { MoveFocusOrTab "Right"; } - bind "Alt j" "Alt Down" { MoveFocus "Down"; } - bind "Alt k" "Alt Up" { MoveFocus "Up"; } + bind "Alt Left" { MoveFocusOrTab "Left"; } + bind "Alt Right" { MoveFocusOrTab "Right"; } + bind "Alt Down" { MoveFocus "Down"; } + bind "Alt Up" { MoveFocus "Up"; } bind "Alt =" "Alt +" { Resize "Increase"; } bind "Alt -" { Resize "Decrease"; } bind "Alt [" { PreviousSwapLayout; }