Tuesday, August 5, 2008

AHK - Notepad Indent

This is a simple key replacement I use for notepad that replaces the TAB character with 3 spaces. Just my personal preference for indenting nested ifs, loops, etc.
#NoTrayIcon
#IfWinActive ahk_class Notepad
:*:`t::{SPACE 3}

No comments: