Last active
August 17, 2017 17:34
-
-
Save baggsie/300eb450a287c9355046785667eac33a to your computer and use it in GitHub Desktop.
Autohotkey settings for Figma
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetTitleMatchMode, 2 ; This let's any window that partially matches the given name get activated | |
#IfWinActive, Figma | |
+tab:: ;Toggle the UI with shift+tab | |
Send ^\ | |
return | |
#q:: | |
Send ^+[ ;Send to back | |
return | |
#w:: | |
Send ^[ ;Send backwards | |
return | |
#r:: | |
Send ^+] ;Send to front | |
return | |
#e:: | |
Send ^] ;Send fowards | |
Return | |
#a:: | |
Send p ;Pen Tool | |
Return | |
#s:: | |
Send o ;Circle Tool | |
Return | |
#1:: | |
Send 0 ;Zoom to 100% | |
Return | |
#IfWinActived |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment