Project

General

Profile

Actions

Shortcuts » History » Revision 84

« Previous | Revision 84/141 (diff) | Next »
Per Amundsen, 06/28/2016 01:52 AM


Hotkeys

|*Key*|*Description*| |%(key)ALT% + 1-9 | Switches window to selected number| |%(key)ALT% + Z | Closes current window| |%(key)CTRL% + W | Closes current window| |%(key)ALT% + F4 | Closes application| |%(key)ALT% + PAGEDOWN | Scrolls messages down| |%(key)ALT% + PAGEUP | Scrolls messages up| |%(key)CTRL% + SPACE | Opens contextmenu in inputbox/topicbox/script editor| |%(key)ALT% + ENTER | Adds a newline in inputbox| |%(key)ALT% + UP/DOWN | Scrolls up/down in inputbox message history even if multiline| |%(key)ALT% + END | Scrolls messages to bottom| |%(key)ALT% + UP | Scrolls up in inputbox message history| |%(key)ALT% + DOWN | Scrolls down in inputbox message history| |%(key)CTRL% + UP | Scrolls up one line| |%(key)CTRL% + DOWN | Scrolls down one line| |%(key)CTRL% + Mouse wheel up | Scrolls up one line| |%(key)CTRL% + Mouse wheel down | Scrolls down one line| |%(key)ALT% + TAB | Performes Tabcomplete on /commands, nicks, #channels, %variables and $identifiers| |%(key)CTRL% + J| Open a Winamp playlist search| |\2. CTRL + copy text from text buffer will copy the color/font formatting| |\2. SHIFT + starting AdiIRC will bypass any autoconnect servers and show the quick connect dialog| |%(key)SHIFT% + TAB| Cycles through inputbox, userlist, topicbox, searchbox| |%(key)CTRL% + D | Toggles window attachment| |%(key)ALT% + X | Toggles window maximized status| |%(key)CTRL% + ALT + A | Toggles window is ontop| |%(key)ALT% + F1 | Opens help window| |%(key)ALT% + F2 | Toggles docking panels on/off| |%(key)ALT% + R | Opens script manager| |%(key)ALT% + O | Opens options window| |%(key)ALT% + B | Opens the Address book| |%(key)ALT% + D | Opens aliases editor| |%(key)ALT% + P | Opens menu editor| |%(key)ALT% + N | Toggles Notify list| |%(key)ALT% + U | Toggles URL catcher list| |%(key)CTRL% + T | Opens new server window| |%(key)CTRL% + F | Opens text search| |%(key)CTRL% + L | Scrolls the unread line marker line into view| |%(key)CTRL% + SHIFT + L | Enable/disable the marker line in current window| |%(key)CTRL% + G | Hides/shows Treebar| |%(key)CTRL% + H | Cycles last highlighted windows| |%(key)CTRL% + S | Opens server list| |%(key)CTRL% + ALT + UP | Toggles window opacity (transparency)| |%(key)CTRL% + ALT + DOWN | Toggles window opacity (transparency)| |%(key)CTRL% + Enter | Allows you to send a message starting with "/<command>" without executing the command| |%(key)CTRL% + R | Toggles sound on/off| |%(key)CTRL% + + | Increases text size in current window| |%(key)CTRL% + - | Decreases text size in current window| |%(key)CTRL% + 0 | Resets text size in current window| |%(key)CTRL% + B | Inserts bold tag| |%(key)CTRL% + K | Inserts color tag| |%(key)CTRL% + I | Inserts italic tag| |%(key)CTRL% + U | Inserts underline tag| |%(key)CTRL% + O | Inserts stop all formatting tag| |%(key)CTRL% + E | Inserts emoticon| |Mousebutton 3| Cycles one window back (according to treebar/switchbar order)| |Mousebutton 4| Cycles one window forward(according to treebar/switchbar order)| |%(key)ALT% + LEFT| Cycles one window back (according to treebar/switchbar order)| |%(key)ALT% + RIGHT| Cycles one window forward (according to treebar/switchbar order)| |%(key)CTRL% + ALT + LEFT | Cycles one window back (according to treebar/switchbar order) including minimized windows| |%(key)CTRL% + ALT + RIGHT | Cycles one window forward (according to treebar/switchbar order) including minimized windows| |%(key)CTRL% + TAB| Cycles through open window (in recent history order)| |%(key)CTRL% + SHIFT + TAB| Cycles through open windows backwards (in recent history order)| |%(key)CTRL% + N| Cycles through all open channel windows| |%(key)CTRL% + Q| Cycles through all open query windows| |%(key)CTRL% + M| Goto next unread window| |%(key)CTRL% + ALT + M| Goto next unread window with new normal messages/highlights only| |%(key)SHIFT%| + Left MouseClick a tab in Switchbar/Treebar Closes the window| |%(key)CTRL%| + Left MouseClick a tab in Switchbar/Treebar Minimizes the window| |%(key)ESC%| For channels/custom window it minimizes, for most dialogs it closes| |%(key)F1%| Shows a help window| |%(key)F2%| Toggle on/off Docking panels| |%(key)F5%| Reloads Logviewer/Theme Manger/Plugin Manager| |%(key)F11%| Toggle main window fullscreen| |%(key)CTRL% + E | Focus filter box in Options/Serverlist| |%(key)CTRL% + S | Save Options/Scripting Editor/Serverlist/Theme Manager| |%(key)SHIFT% + Clicking Connect/Connect in a new window button in the Serverlist | Opens the server in a new window without connecting.| |%(key)SHIFT% + UP | Move selected network up in the Serverlist.| |%(key)SHIFT% + DOWN | Move selected network down in the Serverlist.| |%(key)SHIFT% + Clicking the Titlebar minimize icon | Minimize AdiIRC to tray regardless of tray settings.| |%(key)CTRL% + Clicking the Titlebar minimize icon | Show the /lock dialog.| |%(key)SHIFT% + Right Clicking the Titlebar of a undocked window | Rolls the window up or down.|
h2. Override built-in hotkeys

Starting with version 1.9.6, you can use the scripting event on KEYDOWN to override most of the built-in hotkeys.
Not all functions have a command, feel free to request one if you need it.

Can also be used to create new hotkeys.

Example

; Setup a keydown keyval for character 'r', you can retrieve the keyval value from the $keyval identifier.
on *:KEYDOWN:*:114:{

  ; Check if control key is pressed using bitwise comparison
  ; Control = 2
  ; Shift = 4
  ; Alt = 8
  if ($mouse.key & 2) {

    ; Echo the hotkey was pressed
    echo -ag Ctrl + R was pressed

    ; Halt any AdiIRC hotkeys
    halt
  }
}

Creating new hotkeys

New hotkeys can be created using the alias syntax and the F-keys.

F1-12 and any combination using alt/shift/control is allowed.

a - Alt.
s - Shift.
c - Control

Example

alias aF3 {
  echo -ag I pressed ALT + F3
}

alias sF3 {
  echo -ag I pressed SHIFT + F3
}

alias cF3 {
  echo -ag I pressed CTRL + F3
}

alias caF3 {
  echo -ag I pressed CTRL + ALT + F3
}

Updated by Per Amundsen almost 8 years ago · 84 revisions

Also available in: PDF HTML TXT