From 20c93600e196c171ddf6240e2fe873cee18b0ec4 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 31 May 2020 16:37:01 -0500 Subject: [PATCH] - Added Windows 10 Emoji Panel Ctrl-Cmd-Spacebar --- windows/kinto.ahk | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index e65f934..f402188 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -30,6 +30,9 @@ GroupAdd, vscode, ahk_exe Code.exe ; Close Apps ^q::Send !{F4} +; Emoji Panel +#^Space::Send {LWin down};{LWin up} + ; Full Screenshot ^+3::Send {PrintScreen} @@ -83,13 +86,13 @@ if(!GetKeyState("LWin", "P")) } return -; Sublime Text Remaps for VS Code ; ST2CODE +; Sublime Text Remaps for VS Code #IfWinActive ahk_group vscode ; ST2CODE - ; Remap Ctrl+Shift to behave like macOS Sublimetext ; ST2CODE - ; Will extend cursor to multiple lines ; ST2CODE + ; Remap Ctrl+Shift to behave like macOS Sublimetext + ; Will extend cursor to multiple lines #+Up::send ^!{Up} ; ST2CODE #+Down::send ^!{Down} ; ST2CODE - ; Remap Ctrl+Cmd+G to select all matches ; ST2CODE + ; Remap Ctrl+Cmd+G to select all matches #^g::send ^+{L} ; ST2CODE #If ; ST2CODE