Fix some of the comments

This commit is contained in:
Kevin MacMartin 2024-04-10 15:16:44 -04:00
parent e2214dbb88
commit ecc10aa745
3 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@
| Key(s) | Behaviour |
|-----------------------------------------|--------------------------------------------------------------------|
| `c` and `<Ctrl>c` | Create a new pane and create a new pane in the current directory |
| `[` and `]` | Split the window vertically and horizontally |
| `[` and `]` | Create a new pane to the right and below the current one |
| `-` and `=` | Select an even layout vertically and horizontally |
| `_` and `+` | Rotate the panes clockwise and counter-clockwise |
| `S` | Swap the current pane with the marked one (`M` to mark) |

View File

@ -53,15 +53,15 @@ bind -T root MouseDown3Pane send-keys -M # send right clicks to the application
# KEY BINDINGS
#
# c and <ctrl>c to create a new pane in the current path and in home
# c to create a new window in ~ and <ctrl>c to create a new window in the path of the current pane
bind C-c new-window -c "#{pane_current_path}"
bind c new-window
#
# [ and ] to splitting the window into top/bottom and left/right
# [ to create a new pane to the right and ] to create a new pane below
bind [ split-window -v -c "#{pane_current_path}"
bind ] split-window -h -c "#{pane_current_path}"
#
# - and = to evenly laying out the panes top->bottom and left->right
# - to evenly stack panes top-to-bottom and = to evenly place panes left-to-right
bind - select-layout even-vertical
bind = select-layout even-horizontal
#

View File

@ -53,15 +53,15 @@ bind -T root MouseDown3Pane send-keys -M # send right clicks to the application
# KEY BINDINGS
#
# c and <ctrl>c to create a new pane in the current path and in home
# c to create a new window in ~ and <ctrl>c to create a new window in the path of the current pane
bind C-c new-window -c "#{pane_current_path}"
bind c new-window
#
# [ and ] to splitting the window into top/bottom and left/right
# [ to create a new pane to the right and ] to create a new pane below
bind [ split-window -v -c "#{pane_current_path}"
bind ] split-window -h -c "#{pane_current_path}"
#
# - and = to evenly laying out the panes top->bottom and left->right
# - to evenly stack panes top-to-bottom and = to evenly place panes left-to-right
bind - select-layout even-vertical
bind = select-layout even-horizontal
#