Skip to content

Instantly share code, notes, and snippets.

@Leokuma
Last active June 25, 2023 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leokuma/1cb8a85e445808aedb3ed8f85c16bd32 to your computer and use it in GitHub Desktop.
Save Leokuma/1cb8a85e445808aedb3ed8f85c16bd32 to your computer and use it in GitHub Desktop.
AutoHotKey Navigator
#NoEnv ;Recommended for performance and compatibility with future AutoHotkey releases.
#NoTrayIcon ;if you don't want a tray icon for this AutoHotkey program.
#SingleInstance force ;Skips the dialog box and replaces the old instance automatically
SendMode Input ;Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir, %A_ScriptDir% ;Set default directory to where this script file is located. (Note %% because it's expecting and unquoted string)
NumpadLeft::^#Left
NumpadRight::^#Right
NumpadIns::#Tab
NumpadHome::Browser_Back
NumpadPgUp::Browser_Forward
NumpadEnd::^z
NumpadPgDn::^+z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment