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 | | Key(s) | Behaviour |
|-----------------------------------------|--------------------------------------------------------------------| |-----------------------------------------|--------------------------------------------------------------------|
| `c` and `<Ctrl>c` | Create a new pane and create a new pane in the current directory | | `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 `=` | Select an even layout vertically and horizontally |
| `_` and `+` | Rotate the panes clockwise and counter-clockwise | | `_` and `+` | Rotate the panes clockwise and counter-clockwise |
| `S` | Swap the current pane with the marked one (`M` to mark) | | `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 # 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-c new-window -c "#{pane_current_path}"
bind c new-window 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 -v -c "#{pane_current_path}"
bind ] split-window -h -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-vertical
bind = select-layout even-horizontal 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 # 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-c new-window -c "#{pane_current_path}"
bind c new-window 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 -v -c "#{pane_current_path}"
bind ] split-window -h -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-vertical
bind = select-layout even-horizontal bind = select-layout even-horizontal
# #