Commit 82ee3ee494075fb9a2c13830e2b3c81d01abcf15

Make tmux resize keys repeatable
The -r flag allows keep pressing the key without the prefix withing 0.5s
by default to keep resizing the window (not necessarily in the same
direction).
Author: xaizek
Author date (UTC): 2025-09-11 13:38
Committer name: xaizek
Committer date (UTC): 2025-09-11 13:58
Parent(s): a847f2c448cee7651a8d665b7c49b454da3c2a64
Signing key: 99DC5E4DB05F6BE2
Tree: 815e76e375bb1f6f7b0079a152152b74331a6d2c
File Lines added Lines deleted
tmux.conf 4 4
File tmux.conf changed (mode: 100644) (index d8e2179..a397b3d)
... ... bind-key k select-pane -U
46 46 bind-key l select-pane -R bind-key l select-pane -R
47 47
48 48 # resize pane using prefix + H/J/K/L # resize pane using prefix + H/J/K/L
49 bind-key H resize-pane -L 5
50 bind-key J resize-pane -D 5
51 bind-key K resize-pane -U 5
52 bind-key L resize-pane -R 5
49 bind-key -r H resize-pane -L 5
50 bind-key -r J resize-pane -D 5
51 bind-key -r K resize-pane -U 5
52 bind-key -r L resize-pane -R 5
53 53
54 54 # toggle between two last visited windows # toggle between two last visited windows
55 55 bind-key ' ' last-window bind-key ' ' last-window
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotfiles

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotfiles

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master