/usr/share/ircII/script/screen is in ircii 20151120-1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # $eterna: screen,v 1.4 2001/08/12 15:57:12 mrg Exp $
#
# screen - makes ircII like screen.
# original idea from Avalon (avalon@coombs.anu.edu.au)
# this script by phone (phone@coombs.anu.edu.au)
#
# Lines like
#
# window [new] level NONE hold [off|on] scroll [off|on] chan #some_channel
# window hide
#
# Are useful for setting up these windows, with the first occurance not
# having a "new" ..and the last not having a "hide".
#
# ^X1 - ^X0 swap windows 1 to 10.
# ^Xa goes to the last window..
# ^Xc creates a new window
# ^Xk kills the current window, and swaps it with another.
# ^Xl lists the windows.
# ^Xn swaps the next window (in refnumbers)
# ^Xp swap the previous window (in refnumbers)
# ^X (space) swap the next window.
# ^XC clears all windows visible
# ^X^X swaps in the last-visited window
alias win.newwin window new hide;window swap last
bind ^X meta2_character
bind meta2-1 parse_command window swap 1
bind meta2-2 parse_command window swap 2
bind meta2-3 parse_command window swap 3
bind meta2-4 parse_command window swap 4
bind meta2-5 parse_command window swap 5
bind meta2-6 parse_command window swap 6
bind meta2-7 parse_command window swap 7
bind meta2-8 parse_command window swap 8
bind meta2-9 parse_command window swap 9
bind meta2-0 parse_command window swap 10
bind meta2-a parse_command window swap last
bind meta2-c parse_command win.newwin
bind meta2-^c parse_command win.newwin
bind meta2-k parse_command window killswap
bind meta2-l parse_command window list
bind meta2-n swap_next_window
bind meta2-p swap_previous_window
bind meta2-^` swap_next_window # does a space, for some reason.
bind meta2-C parse_command clear all
bind meta2-^x swap_last_window
###
### magic stuff
###
# OK, so here we have a hook on window_swap that will run everytime
# that a different server window is swapped in, we also swapin the
# associated message window.
## on window_swap XXX
|