blob: bff3e359e2c5b9b767a7e5514deddcce31818695 (
about) (
plain) (
blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
This is a comprehensive list of all accelerator keys defined in KVIrc.
An accelerator key is a combination of keyboard buttons that, when pressed
toghether, will accomplish an action which otherwise would be done by moving
the mouse or selecting from a menu.
Some notes on keys:
Under Windows, the Ctrl+Alt is mapped to the AltGr (Alternative Graphics) key.
Since AltGr is used in many keyboard layouts to produce special characters,
the use of any Ctrl+Alt hotkey is discouraged.
A list of standard window hotkeys can be found here: http://support.microsoft.com/kb/126449
Under Unix*/KDE, a lot of keys are globally binded to specific software, eg:
Ctrl+Shift+S shows the contact list of Kopete
Ctrl+Alt+S stops the music player juk
A list of these can be found at SystemSettings->Keyboard and mouse->Global keyboard shortcuts.
All the standard keys alphabetically ordered:
F1 Help Index (Window)
Ctrl+A Select all
Ctrl+B Insert Bold control character
Ctrl+C Copy to clipboard
Ctrl+D
Ctrl+E
Ctrl+F Open "Find Text" dialog
Ctrl+G
Ctrl+H
Ctrl+I Open "Insert icon" dialog
Ctrl+J Open "Join Channels" dialog
Ctrl+K Open "Insert Color" dialog
Ctrl+L
Ctrl+M
Ctrl+N Open new context
Ctrl+O Insert Reset control character
Ctrl+P Insert "Plain text" control character
Ctrl+Q
Ctrl+R Insert Reverse control character
Ctrl+S Open "Servers" dialog
Ctrl+T Open "Manage Toolbars" dialog
Ctrl+U Insert Underline control character
Ctrl+V Paste clipboard contents
Ctrl+W Close current window
Ctrl+X Cut to clipboard
Ctrl+Y Redo last action
Ctrl+Z Undo last action
Ctrl+Shift+A Go away/back
Ctrl+Shift+B
Ctrl+Shift+C Connect/disconnect current irc context
Ctrl+Shift+D
Ctrl+Shift+E Open Event editor
Ctrl+Shift+F
Ctrl+Shift+G
Ctrl+Shift+H
Ctrl+Shift+I Open Identity options
Ctrl+Shift+J
Ctrl+Shift+K
Ctrl+Shift+L Open Alias editor
Ctrl+Shift+M
Ctrl+Shift+N
Ctrl+Shift+O Open "Options" dialog
Ctrl+Shift+P Open Popup editor
Ctrl+Shift+Q Open Action editor
Ctrl+Shift+R Open Raw events editor
Ctrl+Shift+S Open Script tester
Ctrl+Shift+T Open "Theme Options" dialog
Ctrl+Shift+U Open "Registered users" dialog
Ctrl+Shift+V
Ctrl+Shift+W
Ctrl+Shift+X Open "Execute Script" dialog
Ctrl+Shift+Y
Ctrl+Shift+Z
Window handling related keys:
Alt+UpArrow: Previous window
Alt+DownArrow: Next window
Alt+PageUp: Previous highlighted window
Alt+PageDown: Next highlighted window
Alt+Shift+UpArrow: Previous window in the same IRC context
Alt+Shift+DownArrow: Next window in the same IRC context
Ctrl+UpArrow: Maximizes current window
Ctrl+DownArrow or ESC: Minimizes current window
Shift+<F1-F12> window switch
PageUp: Scroll the output window up one page
PageDown: Scroll the output window down one page
Shift+PageUp: Scroll the output window up one line
Shift+PageDown: Scroll the output window down one line
Ctrl+W: Close current window
Text editing related hotkeys:
Ctrl+LeftArrow: Selection left to the previous word
Ctrl+RightArrow: Selection right to the next word
Ctrl+Shift+LeftArrow: Previous word
Ctrl+Shift+RightArrow: Next word
Ctrl+<digit>: Script accelerators (see OnAccelKeyPressed)
F2-F12, Shift+(F1-F12): Script accelerators (see OnAccelKeyPressed)
Ctrl+B: Insert the 'bold' mIRC text control character
Ctrl+K: Insert the 'color' mIRC text control character
Ctrl+R: Insert the 'reverse' mIRC text control character
Ctrl+U: Insert the 'underline' mIRC text control character
Ctrl+O: Insert the 'reset' mIRC text control character
Ctrl+P: Insert the 'non-crypt' (plain text) KVIrc control character used to disable encryption of the current text line
Ctrl+C: Copie the selected text to clipboard
Ctrl+X: Cut the selected text
Ctrl+V: Paste the clipboard contents (same as middle mouse click)
Ctrl+I: Insert the 'icon' control code and pops up the icon list box
CursorUp: Move backward in the command history
CursorDown: Move forward in the command history
Ctrl+PageUp: Open the history popup
CursorRight: Move the cursor to the right
CursorLeft: Move the cursor to the left :)
Shift+CursorLeft: Move the selection to the left
Shift+RightCursor: Move the selection to the right
Alt+Enter: Show/hide the multiline editor
Ctrl+Enter: Send message as plain text, ignoring / commands
Alt+<numeric_sequence>: Insert the character by ASCII/Unicode code; example:
Alt+32: Inserts ASCII/Unicode character 32: ' ' (a space)
Alt+00032: Same as above :)
Alt+13: Inserts the Carriage Return (CR) control character
Alt+77: Inserts ASCII/Unicode character 77: 'M'
Alt+23566: Inserts Unicode character 23566 (an ideogram)
Completion hotkeys
Tab in the first word of input: Complete nicknames in the current channel or query
Tab after a leading /: Complete commands
Tab after a / in the middle of input: Complete directories
Tab after a $: Complete function names
Shift+Tab after the first word of input:Complete masks in the current channel or query
|