Hi, If I understand you right, you would need to change the clip definition for batch files somethig like this:
Original: [i] [IF | Conditional operations in batch processing] IF |[NOT] EXIST filename (command) [parameters] IF [NOT] (string1)==(string2) (command) [parameters] IF [NOT] ERRORLEVEL (number) (command) [parameters] Rem Allows for conditional operations in batch processing. [/i] To a separated solution: [i] [IF | Conditional operation - file exists] IF |[NOT] EXIST filename (command) [parameters] [IF | Conditional operation - string equal] IF |[NOT] (string1)==(string2) (command) [parameters] [IF | Conditional operation - errorlevel] IF |[NOT] ERRORLEVEL (number) (command) [parameters] [/i] This way you would have 3 entries in the clip suggestion box after you type 'IF' and press CTRL+SPACE. Therefore you could chose the syntax which you need. But in this case i guess the template file is more a help file for DOS batches then a real teplate. Some kind of syntax desription. If you check some other comments, some may have much longer description. Perhaps the best would be in your case, to simply deactivate the SHIFT+SPACE shortcut. This calls always the first matching template if there is any. Althogh if you deactivate this key combination, you still could use the SHIFT+CTRL anytime to open the matching template's list. -- <http://forum.pspad.com/read.php?2,55097,55103> PSPad freeware editor http://www.pspad.com
