Hi,
1. I need to delete lines that are longer than specified line length (e.g. 180 chars). My macro works, but it's extremely slow.
2. It wolud be nice not to have to specify number of loops to run (50000 in this example).
Please help.
Here is my macro:
InsertMode
ColumnModeOff
HexOff
Loop 50000
Key END
IfColNumGt 180
DeleteLine
Else
Key DOWN ARROW
EndIf
EndLoop
1. I need to delete lines that are longer than specified line length (e.g. 180 chars). My macro works, but it's extremely slow.
2. It wolud be nice not to have to specify number of loops to run (50000 in this example).
Please help.
Here is my macro:
InsertMode
ColumnModeOff
HexOff
Loop 50000
Key END
IfColNumGt 180
DeleteLine
Else
Key DOWN ARROW
EndIf
EndLoop