Project

General

Profile

Shortcuts » History » Version 40

Mr. BS, 05/06/2015 02:27 AM

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