home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 2000 - Modelworks Software
- // @Created build 346 cm20000410
-
- /**
- @Tool: trimTrailingSpaces~removes trailing spaces from the end of lines in the
- active editor.
- @EndTool:
- @Summary: trimTrailingSpaces~removes trailing spaces
- */
-
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var findData = editor.findFirst("[ \t]+$", 0, 0, true, true, true);
- while (findData && findData.found)
- {
- var range = findData.range;
- editor.replace("", range);
- editor.findNext(findData);
- }
- editor.setActive("Remove tailing spaces");
- }
- }
-
- !!/Script
-
-