Hello forum,
I am learning macros and I wrote a simple macro to delete leading spaces (I took the help of code posted on this forum).
InsertMode
ColumnModeOff
HexOff
Key HOME
IfCharIs 32
StartSelect
Key Ctrl+RIGHT ARROW
EndSelect
Delete
EndIf
Key DOWN ARROW
The macro works for the current line. But the way I want it to work is to delete the leading spaces of the current line and go to the next line (I used the Key DOWN ARROW). But it doesn't seem to go to the next line. Can someone guide me please? Thanks a lot...
I am learning macros and I wrote a simple macro to delete leading spaces (I took the help of code posted on this forum).
InsertMode
ColumnModeOff
HexOff
Key HOME
IfCharIs 32
StartSelect
Key Ctrl+RIGHT ARROW
EndSelect
Delete
EndIf
Key DOWN ARROW
The macro works for the current line. But the way I want it to work is to delete the leading spaces of the current line and go to the next line (I used the Key DOWN ARROW). But it doesn't seem to go to the next line. Can someone guide me please? Thanks a lot...