AutoHotkey Community

It is currently May 26th, 2012, 6:28 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: Auto Indent
PostPosted: March 1st, 2008, 5:24 pm 
Offline

Joined: September 17th, 2005, 6:43 pm
Posts: 242
I use this script to keep track of how many { and } I have used so that I do not forget to close an open statement. It should only work with notepad. I hope that someone finds it useful.

To use it pressing the [ key will add a { and auto indent the proper amount of spaces (1 for every open { and so on) and ] will close that statement and auto indent accordingly.

Code:
on=on
Hotkey, IfWinActive, Notepad   
Hotkey, [, open,on
Hotkey, ], open,on
Hotkey,ins,onoff,on
hotkey, enter, end, on
SetTitleMatchMode, 2
control = Edit1
window = Notepad
return
onoff:
if on = on
on = off
else
on = on
Hotkey, [, open,%on%
Hotkey, ], open,%on%
splashtexton,,,Autoindent %on%
sleep, 1000
splashtextoff
return
f1::
reload
return
brace:
send, [
return
count:
ifwinactive, %window%
{
 count = 0
 ControlGet, Out,Currentline,,%control%,%window%
 loop, %out%
 {
  controlget, line,Line, %a_index%,%control%,%window%
  if line contains `{
  count += 1
  if line contains `}
  {
   count -= 1
  }
 }
}
return

open:
if A_ThisHotkey = ]
brace = }
else
brace = {
ControlGet, Out,Currentline,,%control%,%window%
controlget, line,Line, %out%,%control%,%window%
send, {end}
if line is space
{
 if brace = }
 {
 if count = 0
 return
 send {bs}
 }
 send,{%brace%}
 goto end
}
gosub, count
send, {enter}{space %count%}{{}
goto end     
return

end:
gosub, count
send, {enter}{space %count%}
return



Thanks.


Maestrith.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 24 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group