irssi: What to do if I have more than 19 irssi windows?

3

I hang out on several separate networks, and on several channels on each network, and in the end, this results in more than 19 windows within irssi. (I use irssi within tmux, if it matters.)

However, there are only 19 shortcuts for windows: Alt+1 to 0, plus the q to o continuation, with the rest of the windows only being accessible through the Alt+ and Alt+ enumeration.

Is there an easy way to group some channels together for easier access (such that similar channels share half of the screen on each window, for example, but without this affecting more popular channels), or, perhaps easier, have Alt+p to l access windows 20 to 29?

cnst

Posted 2013-09-28T21:04:10.453

Reputation: 1 857

Great question here, been wondering this myself. – isuldor – 2013-09-29T07:18:37.283

Answers

2

Aaron Toponce has an interesting blog post on this Here

Essentially you can bind additional meta keys to the extra windows. at the cost of other irssi keybindings. using the entire keyboard if you wish

/bind meta-1 change_window 1
/bind meta-2 change_window 2
/bind meta-3 change_window 3
...
/bind meta-o change_window 19
/bind meta-p change_window 20
/bind meta-a change_window 21
/bind meta-s change_window 22
/bind meta-d change_window 23
/bind meta-f change_window 24
/bind meta-g change_window 25
... etc

He goes on to using the shift keys to go beyond window 40 too by using the shift keys as well so

/bind meta-! change_window 41 

is Escape-Shift+1

Vagnerr

Posted 2013-09-28T21:04:10.453

Reputation: 347