Project

General

Profile

Shortcuts » History » Version 24

Per Amundsen, 01/20/2015 01:12 PM

1 1 Per Amundsen
h1. Hotkeys
2
3
ALT + 1-9 - Switches window to selected number
4 2 Per Amundsen
ALT + Z - Closes current window
5
CTRL + W - Closes current window
6 1 Per Amundsen
ALT + F4 - Closes application
7
PAGEDOWN - Scrolls messages down
8
PAGEUP - Scrolls messages up
9 23 Per Amundsen
CTRL + SPACE - Opens contextmenu in inputbox/topicbox/script editor
10 9 Per Amundsen
ALT + ENTER - Adds a newline in inputbox
11 10 Per Amundsen
ALT + UP/DOWN - Scrolls up/down in inputbox message history even if multiline
12 1 Per Amundsen
END - Scrolls messages to bottom
13
UP - Scrolls up in inputbox message history
14
DOWN - Scrolls down in inputbox message history
15
CTRL + UP - Scrolls up one line
16
CTRL + DOWN - Scrolls down one line
17
TAB - Perfomes autocomplete on /commands, nicks, #channels, %variables and $identifiers
18
CTRL + J - Open a Winamp playlist search
19 20 Per Amundsen
SHIFT + copy text from text buffer will copy the color/font formatting
20
SHIFT + starting AdiIRC will bypass any autoconnect servers and show the quick connect dialog
21 16 Per Amundsen
SHIFT + TAB - Cycles through inputbox, userlist, topicbox, searchbox
22 20 Per Amundsen
CTRL + D - Toggles window attachment
23
ALT + A - Toggles window is ontop
24
F11 - Toggles IRC fullscreen
25
F1 - Opens help window
26
F2 - Toggles docking panels on/off
27 22 Per Amundsen
ALT + R - Opens script manager
28 20 Per Amundsen
ALT + O - Opens options window
29 1 Per Amundsen
CTRL + T - Opens new server window
30
CTRL + F - Opens text search
31
CTRL + L - Hides/shows unread line marker
32
CTRL + G - Hides/shows Sidebar
33 20 Per Amundsen
CTRL + H - Cycles last highlighted windows
34
CTRL + S - Opens server window
35
CTRL + ALT + UP - Toggles window opacity (transparency)
36
CTRL + ALT + DOWN - Toggles window opacity (transparency)
37 19 Per Amundsen
CTRL + Enter - Allows you to send a message starting with "/<command>" without executing the command
38
CTRL + R - Toggles sound on/off
39 1 Per Amundsen
CTRL + + - Enlarges text size in current window
40
CTRL + - - Minimizes text size in current window
41
CTRL + 0 - Resets text size in current window
42 20 Per Amundsen
43
CTRL + B - Inserts bold tag
44
CTRL + K - Inserts color tag
45
CTRL + I - Inserts italic tag
46
CTRL + U - Inserts underline tag
47
CTRL + O - Inserts stop all formatting tag
48
49 1 Per Amundsen
Mousebutton 3 + Cycles one channel back (according to treebar/switchbar order)
50
Mousebutton 4 + Cycles one channel forward(according to treebar/switchbar order)
51 21 Per Amundsen
ALT + LEFT - Cycles one channel back (according to treebar/switchbar order)
52
ALT + RIGHT - Cycles one channel forward (according to treebar/switchbar order)
53 20 Per Amundsen
CTRL + TAB - Cycles through open channels (in recent history order)
54
CTRL + SHIFT + TAB - Cycles through open channels backwards (in recent history order)
55 24 Per Amundsen
56
h2. Override built-in keybinds
57
58
You can use the scripting event [[on KEYDOWN]] to override most of the built-in keybinds.
59
Not all functions have a [[Scripting Commands|command]], feel free to request one if you need it.
60
61
*Example*
62
63
<pre>
64
; Setup a keydown event for character 'r'
65
on *:KEYDOWN:*:114:{
66
67
  ; Check if control key is pressed using bitwise comparison
68
  ; Control = 2
69
  ; Shift = 4
70
  ; Alt = 8
71
  if ($mouse.key & 2) {
72
    
73
    ; Echo the keybind was pressed
74
    echo -ag Ctrl + R was pressed
75
76
    ; Halt any AdiIRC keybinds
77
    halt
78
  }
79
}
80
</pre>