home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1999-2000 - Modelworks Software
- // @Created build 273 cm19990304
- // @Modified build 382 cm20000729
-
- /**
- @Tool: deleteBlankLines~deletes all blank lines in the
- active editor.
- @EndTool:
- @Summary: deleteBlankLines~deletes all blank lines
- */
-
- var gOutput = getOutput();
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var count = editor.getLineCount();
- for (var i = count-1; i >= 0; i--)
- {
- var data = editor.copy(i);
-
- if (!searchInString(data, "[^ \t]"))
- {
- editor.replace("", i, 0, i+1, 0);
- }
- }
- editor.setActive("Delete blank lines");
- }
- }
-
- !!/Script
-
-