Project

General

Profile

Shortcuts » History » Version 35

Per Amundsen, 04/27/2015 06:11 PM

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 1 Per Amundsen
Mousebutton 3 + Cycles one channel back (according to treebar/switchbar order)
53
Mousebutton 4 + Cycles one channel forward(according to treebar/switchbar order)
54 21 Per Amundsen
ALT + LEFT - Cycles one channel back (according to treebar/switchbar order)
55
ALT + RIGHT - Cycles one channel forward (according to treebar/switchbar order)
56 33 Per Amundsen
CTRL + ALT + LEFT - Cycles one channel back (according to treebar/switchbar order) including minimized windows
57
CTRL + ALT + RIGHT - Cycles one channel forward (according to treebar/switchbar order) including minimized windows
58 20 Per Amundsen
CTRL + TAB - Cycles through open channels (in recent history order)
59
CTRL + SHIFT + TAB - Cycles through open channels backwards (in recent history order)
60 24 Per Amundsen
61 29 Per Amundsen
SHIFT + Left MouseClick a tab in Switchbar/Treebar - Closes the window
62
CTRL + Left MouseClick a tab in Switchbar/Treebar - Minimizes the window
63 28 Per Amundsen
64 25 Per Amundsen
h2. Override built-in hotkeys
65 24 Per Amundsen
66 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.
67 24 Per Amundsen
Not all functions have a [[Scripting Commands|command]], feel free to request one if you need it.
68
69
*Example*
70
71
<pre>
72 27 Per Amundsen
; Setup a keydown keyval for character 'r', you can retrieve the keyval value from the $keyval identifier.
73 24 Per Amundsen
on *:KEYDOWN:*:114:{
74
75
  ; Check if control key is pressed using bitwise comparison
76
  ; Control = 2
77
  ; Shift = 4
78
  ; Alt = 8
79
  if ($mouse.key & 2) {
80
    
81
    ; Echo the keybind was pressed
82
    echo -ag Ctrl + R was pressed
83
84
    ; Halt any AdiIRC keybinds
85
    halt
86
  }
87 30 Per Amundsen
}
88
</pre>
89
90
h2. Creating new keybinds
91
92
New keybinds can be created using the alias syntax and the F-keys.
93
94
F1-12 and any combination using alt/shift/control is allowed.
95
96 31 Per Amundsen
a - Alt.
97
s - Shift.
98
c - Control
99
100 30 Per Amundsen
*Example*
101
102
<pre>
103
alias aF3 {
104
  echo -ag I pressed ALT + F3
105
}
106
107
alias sF3 {
108
  echo -ag I pressed SHIFT + F3
109
}
110
111
alias cF3 {
112
  echo -ag I pressed CTRL + F3
113
}
114
115
alias caF3 {
116
  echo -ag I pressed CTRL + ALT + F3
117 24 Per Amundsen
}
118
</pre>