From eea2dd8c1f3a30498ba6ba8fa37a226663bd2432 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 4 Jun 2015 20:20:09 -0500 Subject: [PATCH] Add List All Key Bindings as a tmux til. --- README.md | 1 + tmux/list-all-key-bindings.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 tmux/list-all-key-bindings.md diff --git a/README.md b/README.md index 8decf28..db93108 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ smart people at [Hashrocket](http://hashrocket.com/). ### tmux +- [List All Key Bindings](tmux/list-all-key-bindings.md) - [Organizing Windows](tmux/organizing-windows.md) - [Reclaiming The Entire Window](tmux/reclaiming-the-entire-window.md) - [tmux in your tmux](tmux/tmux-in-your-tmux.md) diff --git a/tmux/list-all-key-bindings.md b/tmux/list-all-key-bindings.md new file mode 100644 index 0000000..516d25e --- /dev/null +++ b/tmux/list-all-key-bindings.md @@ -0,0 +1,24 @@ +# List All Key Bindings + +There are a couple ways to list all the tmux key bindings. If you are not +currently in a tmux sessions, you can enter this from the terminal: + +```bash +$ tmux list-keys +``` + +If you are currently in a tmux session, then you can take advantage of the +tmux environment by either using: + +``` +:list-keys +``` + +or + +``` +? +``` + +Any of these will bring up a list of all key bindings available to you +within a tmux session on your machine.