Change ctrl-escape (which doesn't actually work) to ctrl-r

This commit is contained in:
Kevin MacMartin 2015-05-28 19:27:59 -04:00
parent 16bb184264
commit 4320721ecc
3 changed files with 3 additions and 3 deletions

View file

@ -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 |

View file

@ -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

View file

@ -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