mirror of
https://github.com/prurigro/darkcloud-tmuxconfig.git
synced 2024-11-23 07:34:10 -05:00
Change ctrl-escape (which doesn't actually work) to ctrl-r
This commit is contained in:
parent
16bb184264
commit
4320721ecc
3 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@
|
||||||
| `<Space>` and `<Ctrl><Space>` | Move to the previously selected pane and window respectively |
|
| `<Space>` and `<Ctrl><Space>` | Move to the previously selected pane and window respectively |
|
||||||
| `h`, `j`, `k` and `l` | Move left, down, up and right between panes respectively like the arrow keys |
|
| `h`, `j`, `k` and `l` | Move left, down, up and right between panes respectively like the arrow keys |
|
||||||
| `` ` `` | Toggle synchronized input between the panes on the current window |
|
| `` ` `` | Toggle synchronized input between the panes on the current window |
|
||||||
| `<Ctrl><Escape>` | Clear the terminal history, tmux history and the current window/pane |
|
| `<Ctrl>r` | Clear the terminal history, tmux history and the current window/pane |
|
||||||
| `?` and `/` | Show help for available key bindings and commands respectively |
|
| `?` and `/` | Show help for available key bindings and commands respectively |
|
||||||
| `y` and `<Ctrl>p` | Enter __copy mode__ and paste from the copy buffer respectively |
|
| `y` and `<Ctrl>p` | Enter __copy mode__ and paste from the copy buffer respectively |
|
||||||
| `<Ctrl>v` and `<Ctrl>y` | Pastes the X buffer in tmux, and sends the tmux buffer to X respectively |
|
| `<Ctrl>v` and `<Ctrl>y` | Pastes the X buffer in tmux, and sends the tmux buffer to X respectively |
|
||||||
|
|
|
@ -111,7 +111,7 @@ bind l select-pane -R
|
||||||
bind ` set-window-option synchronize-panes \; display "synchronize-panes: toggled"
|
bind ` set-window-option synchronize-panes \; display "synchronize-panes: toggled"
|
||||||
#
|
#
|
||||||
# escape to clearing history and screen
|
# escape to clearing history and screen
|
||||||
bind C-Escape send-keys -R\; send-keys 'C-l'\; clear-history
|
bind C-r send-keys -R\; send-keys 'C-l'\; clear-history
|
||||||
#
|
#
|
||||||
# ? and <ctrl>? to keyboard and command help respectively
|
# ? and <ctrl>? to keyboard and command help respectively
|
||||||
bind ? list-keys
|
bind ? list-keys
|
||||||
|
|
|
@ -111,7 +111,7 @@ bind l select-pane -R
|
||||||
bind ` set-window-option synchronize-panes \; display "synchronize-panes: toggled"
|
bind ` set-window-option synchronize-panes \; display "synchronize-panes: toggled"
|
||||||
#
|
#
|
||||||
# escape to clearing history and screen
|
# escape to clearing history and screen
|
||||||
bind C-Escape send-keys -R\; send-keys 'C-l'\; clear-history
|
bind C-r send-keys -R\; send-keys 'C-l'\; clear-history
|
||||||
#
|
#
|
||||||
# ? and <ctrl>? to keyboard and command help respectively
|
# ? and <ctrl>? to keyboard and command help respectively
|
||||||
bind ? list-keys
|
bind ? list-keys
|
||||||
|
|
Loading…
Reference in a new issue