diff --git a/README.md b/README.md index cc495e3..3236e52 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,11 @@ | `[` and `]` | Split the window vertically and horizontally respectively | | `{` and `}` | Join a window as a split pane top/bottom and left/right respectively (leave pane: `!`) | | `-` and `=` | Select an even layout vertically and horizontally respectively | -| `_` and `+` | Rotate the window counter-clockwise and clockwise respectively | +| `_` and `+` | Rotate the window counter-clockwise and clockwise respectively | | `<` and `>` | Move the current window to the first and last window respectively | | `.` and `,` | Move and swap the current window with the provided window number respectively | | `$` and `#` | Rename the current session and window with the provided name respectively | -| `` and `` | Move to the previously selected window and pane respectively | +| `` and `` | 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 | | `` ` `` | Toggle synchronized input between the panes on the current window | | `` | Clear the terminal history, tmux history and the current window/pane | @@ -38,8 +38,8 @@ | `y` and `p` | Enter __copy mode__ and paste from the copy buffer respectively | | `v` and `y` | Pastes the X buffer in tmux, and sends the tmux buffer to X respectively | | (**copy mode**) `v`, `y` and `` | Begin selection, copy selection and cancel **copy mode** respectively | -| `Alt-[0-9]` (no prefix) | Switch directly to the given window | | `W` | Write scrollback buffer to file | +| `Alt-[0-9]` (no prefix) | Switch directly to the given window | ## Italics Support ## @@ -50,4 +50,5 @@ Tmux supports italics if your terminal does, but the terminfo files _screen_ and * Written by Kevin MacMartin: [GitHub Projects](https://github.com/prurigro) | [Arch Linux AUR Packages](https://aur.archlinux.org/packages/?SeB=m&K=prurigro) ## License ## + This config and the bwrate script are released under the MIT license. diff --git a/tmux.normal.conf b/tmux.normal.conf index 8e41693..5202740 100644 --- a/tmux.normal.conf +++ b/tmux.normal.conf @@ -91,9 +91,9 @@ bind , command-prompt "swap-window -t '%%'" # $ and # to rename the session and current window respectively ($ is set by default) bind "#" command-prompt -I '#W' "rename-window '%%'" # -# Space and Space to navigating to the previously selected pane and window respectively -bind Space last-pane -bind C-Space last-window +# Space and Space to navigating to the previously selected window and pane respectively +bind Space last-window +bind C-Space last-pane # # rebind up,down,left,right to the same without repeat bind Left select-pane -L diff --git a/tmux.powerline.conf b/tmux.powerline.conf index 355deb0..cb6d43c 100644 --- a/tmux.powerline.conf +++ b/tmux.powerline.conf @@ -91,9 +91,9 @@ bind , command-prompt "swap-window -t '%%'" # $ and # to rename the session and current window respectively ($ is set by default) bind "#" command-prompt -I '#W' "rename-window '%%'" # -# Space and Space to navigating to the previously selected pane and window respectively -bind Space last-pane -bind C-Space last-window +# Space and Space to navigating to the previously selected window and pane respectively +bind Space last-window +bind C-Space last-pane # # rebind up,down,left,right to the same without repeat bind Left select-pane -L