You can download EditPadPro (EPP for short) from www.editpadpro.com.
This topic is for neat tricks you should or could do with it.
For example when I install the util, first I do is to add those ArmA files into the known filetypes. Do this by choosing Options -> Configure File Types. From there click New, then write SQS/SQF into the Description line, file maks line add: *.sqs, *.sqf but I believe *.sq? works also. Now choose Syntax & Navigation tab and select Syntax coloring scheme C/C++ and click ok. Now you have nice formatting and coloring for all your sqs and sqf scripts.
Regular Expressions
Regular expressions are powerful editing things. To run regular expressions in the search box, tick the Regular Expression tick box.
For example if you want to remove all duplicate lines from your text file, hit CTRL-F to open the search box, then write to the search field:
Code: Select all
(.*)
\1
Code: Select all
\1
More tips will be added to this first post when I encounter them. Big thanks goes for Q whos always advocating EPP and the-f also, they have helped me much on EPP editing tips.