Project

General

Profile

Shortcuts » History » Version 39

Per Amundsen, 05/04/2015 05:57 AM

1 30 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. Hotkeys
4
5
ALT + 1-9 - Switches window to selected number
6 2 Per Amundsen
ALT + Z - Closes current window
7
CTRL + W - Closes current window
8 1 Per Amundsen
ALT + F4 - Closes application
9
PAGEDOWN - Scrolls messages down
10
PAGEUP - Scrolls messages up
11 23 Per Amundsen
CTRL + SPACE - Opens contextmenu in inputbox/topicbox/script editor
12 9 Per Amundsen
ALT + ENTER - Adds a newline in inputbox
13 10 Per Amundsen
ALT + UP/DOWN - Scrolls up/down in inputbox message history even if multiline
14 1 Per Amundsen
END - Scrolls messages to bottom
15
UP - Scrolls up in inputbox message history
16
DOWN - Scrolls down in inputbox message history
17
CTRL + UP - Scrolls up one line
18
CTRL + DOWN - Scrolls down one line
19 32 Per Amundsen
TAB - Performes [[Tabcomplete]] on /commands, nicks, #channels, %variables and $identifiers
20 1 Per Amundsen
CTRL + J - Open a Winamp playlist search
21 34 Per Amundsen
CTRL + copy text from text buffer will copy the color/font formatting
22 20 Per Amundsen
SHIFT + starting AdiIRC will bypass any autoconnect servers and show the quick connect dialog
23 16 Per Amundsen
SHIFT + TAB - Cycles through inputbox, userlist, topicbox, searchbox
24 20 Per Amundsen
CTRL + D - Toggles window attachment
25 35 Per Amundsen
ALT + X - Toggles window maximized status
26 20 Per Amundsen
ALT + A - Toggles window is ontop
27
F11 - Toggles IRC fullscreen
28
F1 - Opens help window
29
F2 - Toggles docking panels on/off
30 22 Per Amundsen
ALT + R - Opens script manager
31 20 Per Amundsen
ALT + O - Opens options window
32 1 Per Amundsen
CTRL + T - Opens new server window
33
CTRL + F - Opens text search
34 29 Per Amundsen
CTRL + L - Scrolls the unread line marker line into view
35 1 Per Amundsen
CTRL + G - Hides/shows Sidebar
36 20 Per Amundsen
CTRL + H - Cycles last highlighted windows
37
CTRL + S - Opens server window
38
CTRL + ALT + UP - Toggles window opacity (transparency)
39
CTRL + ALT + DOWN - Toggles window opacity (transparency)
40 19 Per Amundsen
CTRL + Enter - Allows you to send a message starting with "/<command>" without executing the command
41
CTRL + R - Toggles sound on/off
42 1 Per Amundsen
CTRL + + - Enlarges text size in current window
43
CTRL + - - Minimizes text size in current window
44
CTRL + 0 - Resets text size in current window
45 20 Per Amundsen
46
CTRL + B - Inserts bold tag
47
CTRL + K - Inserts color tag
48
CTRL + I - Inserts italic tag
49
CTRL + U - Inserts underline tag
50
CTRL + O - Inserts stop all formatting tag
51
52 36 Per Amundsen
Mousebutton 3 + Cycles one window back (according to treebar/switchbar order)
53
Mousebutton 4 + Cycles one window forward(according to treebar/switchbar order)
54
ALT + LEFT - Cycles one window back (according to treebar/switchbar order)
55
ALT + RIGHT - Cycles one window forward (according to treebar/switchbar order)
56
CTRL + ALT + LEFT - Cycles one window back (according to treebar/switchbar order) including minimized windows
57
CTRL + ALT + RIGHT - Cycles one window forward (according to treebar/switchbar order) including minimized windows
58
CTRL + TAB - Cycles through open window (in recent history order)
59
CTRL + SHIFT + TAB - Cycles through open windows backwards (in recent history order)
60
CTRL + N - Cycles through all open channel windows
61
CTRL + Q - Cycles through all open query windows
62 38 Per Amundsen
CTRL + M - Goto next unread window
63 39 Per Amundsen
CTRL + ALT + M - Goto next unread window with new normal messages/highlights only
64 24 Per Amundsen
65 29 Per Amundsen
SHIFT + Left MouseClick a tab in Switchbar/Treebar - Closes the window
66
CTRL + Left MouseClick a tab in Switchbar/Treebar - Minimizes the window
67 28 Per Amundsen
68 25 Per Amundsen
h2. Override built-in hotkeys
69 24 Per Amundsen
70 25 Per Amundsen
Starting with version 1.9.6, you can use the scripting event [[on KEYDOWN]] to override most of the built-in hotkeys.
71 24 Per Amundsen
Not all functions have a [[Scripting Commands|command]], feel free to request one if you need it.
72
73
*Example*
74
75
<pre>
76 27 Per Amundsen
; Setup a keydown keyval for character 'r', you can retrieve the keyval value from the $keyval identifier.
77 24 Per Amundsen
on *:KEYDOWN:*:114:{
78
79
  ; Check if control key is pressed using bitwise comparison
80
  ; Control = 2
81
  ; Shift = 4
82
  ; Alt = 8
83
  if ($mouse.key & 2) {
84
    
85 37 Per Amundsen
    ; Echo the hotkey was pressed
86 24 Per Amundsen
    echo -ag Ctrl + R was pressed
87
88 37 Per Amundsen
    ; Halt any AdiIRC hotkeys
89 24 Per Amundsen
    halt
90
  }
91 30 Per Amundsen
}
92
</pre>
93
94 37 Per Amundsen
h2. Creating new hotkeys
95 30 Per Amundsen
96 37 Per Amundsen
New hotkeys can be created using the alias syntax and the F-keys.
97 30 Per Amundsen
98
F1-12 and any combination using alt/shift/control is allowed.
99
100 31 Per Amundsen
a - Alt.
101
s - Shift.
102
c - Control
103
104 30 Per Amundsen
*Example*
105
106
<pre>
107
alias aF3 {
108
  echo -ag I pressed ALT + F3
109
}
110
111
alias sF3 {
112
  echo -ag I pressed SHIFT + F3
113
}
114
115
alias cF3 {
116
  echo -ag I pressed CTRL + F3
117
}
118
119
alias caF3 {
120
  echo -ag I pressed CTRL + ALT + F3
121 24 Per Amundsen
}
122
</pre>