আল্টের সাহায্যে উইন্ডোজ স্যুইচিং যুক্ত করা যায়:
# switch windows alt+number
bind-key -n M-1 select-window -t 1
bind-key -n M-2 select-window -t 2
bind-key -n M-3 select-window -t 3
bind-key -n M-4 select-window -t 4
bind-key -n M-5 select-window -t 5
bind-key -n M-6 select-window -t 6
bind-key -n M-7 select-window -t 7
bind-key -n M-8 select-window -t 8
bind-key -n M-9 select-window -t 9
আপনার ~/.tmux.conf
থেকে এটি থেকে: https://github.com/proft/dotfiles/blob/master/.tmux.conf
আরও, ইরসিটি সক্রিয় উইন্ডোতে থাকলে এটি এটি না করার জন্য:
#switch windows alt+number, unless we are running irssi
bind -n M-1 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 1' 'send M-1'
bind -n M-2 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 2' 'send M-2'
bind -n M-3 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 3' 'send M-3'
bind -n M-4 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 4' 'send M-4'
bind -n M-5 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 5' 'send M-5'
bind -n M-6 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 6' 'send M-6'
bind -n M-7 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 7' 'send M-7'
bind -n M-8 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 8' 'send M-8'
bind -n M-9 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 9' 'send M-9'
bind -n M-0 if 'test `tmux list-panes -F "#W"` != "irssi"' 'select-window -t 0' 'send M-0'
যা মোটামুটি বিন্দু কীটি [উপসর্গের প্রয়োজনীয়তা ছাড়াই] পড়তে পারে, এর ক্রিয়াটির জন্য: বর্তমান ফলকের নামটি ইরসির নাম না করা হয়েছে কিনা তা পরীক্ষা করুন এবং যদি যথাযথ উইন্ডোটি নির্বাচন না করা হয় তবে অন্যথায় কীটি পুনরায় প্রেরণ করুন, যাতে অন্তর্নিহিত অ্যাপ্লিকেশন [irssi] এটা পেতে পারেন।