home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert DoubleQuotes~wraps a selection with double quotes.
- @EndTool:
- @Summary: insert DoubleQuotes~wraps a selection with double quotes.
- */
-
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.insert(selection.endLineIndex, selection.endCharIndex, "\"");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "\"");
- editor.setActive("Insert Double Quotes");
- }
-
- !!/Script
-