Hello I would like that when I am in the python console tabbing will give me four spaces. Any ideas?
+4
A:
- Download and install AutoHotkey
Write this script:
SetTitleMatchMode 2 #IfWinActive python tab:: Send, {SPACE} Send, {SPACE} Send, {SPACE} Send, {SPACE}
Save it as tab-to-space.ahk, and doubleclick on the file.
Note: you might have to captalize "Python" to match your window tite. Or you can have "yhton" and it will match Jython too.
Richard J. Terrell
2009-02-14 16:54:08
Won't this change _every_ Tab you _ever_ type into 4 spaces? If so, won't that screw up a lot of other things?
sykora
2009-02-14 17:05:15
++ for AHK. Love this little tool!
Eli Bendersky
2009-02-14 17:12:16