From 97511401b680921b93fa570c165266c56c5dca1d Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 16 Sep 2020 16:59:51 -0700 Subject: [PATCH] Add capslock_click.ahk, alternative to tabclick. --- AHK/{tabclick.ahk => capslock_click.ahk} | 5 +---- AHK/tab_click.ahk | 5 +++++ 2 files changed, 6 insertions(+), 4 deletions(-) rename AHK/{tabclick.ahk => capslock_click.ahk} (89%) create mode 100644 AHK/tab_click.ahk diff --git a/AHK/tabclick.ahk b/AHK/capslock_click.ahk similarity index 89% rename from AHK/tabclick.ahk rename to AHK/capslock_click.ahk index 8cc4363..99d12e2 100644 --- a/AHK/tabclick.ahk +++ b/AHK/capslock_click.ahk @@ -2,7 +2,4 @@ SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. -Tab:: -{ - Send {LButton} -} +CapsLock::LButton diff --git a/AHK/tab_click.ahk b/AHK/tab_click.ahk new file mode 100644 index 0000000..841b456 --- /dev/null +++ b/AHK/tab_click.ahk @@ -0,0 +1,5 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +Tab::LButton