@@ -33,11 +33,21 @@ bind -n C-M-Left if-shell -F '#{==:#{@ui_binds},on}' \ |
| 33 | "previous-window" \ | 33 | "previous-window" \ |
| 34 | "send-keys C-M-Left" | 34 | "send-keys C-M-Left" |
| 35 | | 35 | |
| | 36 | +# unbind -n M-j |
| | 37 | +# bind -n M-j if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 38 | +# "previous-window" \ |
| | 39 | +# "send-keys M-j" |
| | 40 | + |
| 36 | unbind -n C-M-Right | 41 | unbind -n C-M-Right |
| 37 | bind -n C-M-Right if-shell -F '#{==:#{@ui_binds},on}' \ | 42 | bind -n C-M-Right if-shell -F '#{==:#{@ui_binds},on}' \ |
| 38 | "next-window" \ | 43 | "next-window" \ |
| 39 | "send-keys C-M-Right" | 44 | "send-keys C-M-Right" |
| 40 | | 45 | |
| | 46 | +# unbind -n M-l |
| | 47 | +# bind -n M-l if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 48 | +# "next-window" \ |
| | 49 | +# "send-keys M-l" |
| | 50 | + |
| 41 | ##### Panes / splits ##### | 51 | ##### Panes / splits ##### |
| 42 | | 52 | |
| 43 | # Split left/right (vertical divider) | 53 | # Split left/right (vertical divider) |
@@ -66,25 +76,45 @@ bind -n C-M-w if-shell -F '#{==:#{@ui_binds},on}' \ |
| 66 | | 76 | |
| 67 | ##### Pane focus ##### | 77 | ##### Pane focus ##### |
| 68 | | 78 | |
| 69 | -unbind -n C-M-Left | 79 | +unbind -n C-S-Left |
| 70 | -bind -n C-M-Left if-shell -F '#{==:#{@ui_binds},on}' \ | 80 | +bind -n C-S-Left if-shell -F '#{==:#{@ui_binds},on}' \ |
| 71 | "select-pane -L" \ | 81 | "select-pane -L" \ |
| 72 | - "send-keys C-M-Left" | 82 | + "send-keys C-S-Left" |
| 73 | | 83 | |
| 74 | -unbind -n C-M-Right | 84 | +unbind -n M-J |
| 75 | -bind -n C-M-Right if-shell -F '#{==:#{@ui_binds},on}' \ | 85 | +bind -n M-J if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 86 | + "select-pane -L" \ |
| | 87 | + "send-keys M-J" |
| | 88 | + |
| | 89 | +unbind -n C-S-Right |
| | 90 | +bind -n C-S-Right if-shell -F '#{==:#{@ui_binds},on}' \ |
| 76 | "select-pane -R" \ | 91 | "select-pane -R" \ |
| 77 | - "send-keys C-M-Right" | 92 | + "send-keys C-S-Right" |
| | 93 | + |
| | 94 | +unbind -n M-L |
| | 95 | +bind -n M-L if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 96 | + "select-pane -R" \ |
| | 97 | + "send-keys M-L" |
| 78 | | 98 | |
| 79 | -unbind -n C-M-Up | 99 | +unbind -n C-S-Up |
| 80 | -bind -n C-M-Up if-shell -F '#{==:#{@ui_binds},on}' \ | 100 | +bind -n C-S-Up if-shell -F '#{==:#{@ui_binds},on}' \ |
| 81 | "select-pane -U" \ | 101 | "select-pane -U" \ |
| 82 | - "send-keys C-M-Up" | 102 | + "send-keys C-S-Up" |
| | 103 | + |
| | 104 | +unbind -n M-I |
| | 105 | +bind -n M-I if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 106 | + "select-pane -U" \ |
| | 107 | + "send-keys M-I" |
| | 108 | + |
| | 109 | +unbind -n C-S-Down |
| | 110 | +bind -n C-S-Down if-shell -F '#{==:#{@ui_binds},on}' \ |
| | 111 | + "select-pane -D" \ |
| | 112 | + "send-keys C-S-Down" |
| 83 | | 113 | |
| 84 | -unbind -n C-M-Down | 114 | +unbind -n M-K |
| 85 | -bind -n C-M-Down if-shell -F '#{==:#{@ui_binds},on}' \ | 115 | +bind -n M-K if-shell -F '#{==:#{@ui_binds},on}' \ |
| 86 | "select-pane -D" \ | 116 | "select-pane -D" \ |
| 87 | - "send-keys C-M-Down" | 117 | + "send-keys M-K" |
| 88 | | 118 | |
| 89 | ##### Pane resize ##### | 119 | ##### Pane resize ##### |
| 90 | | 120 | |