home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 2001 - Miguel Angel Rojas G.
- // @Modified build 497 cm20010225
-
- /**
- @Summary: addAutoBookmark~adds an automatic bookmark for the current selection.
- An automatic bookmark is auto-labeled.
-
- */
-
- function DoCommand()
- {
- var bookmarkMap = getMapFile( "Bookmarks" );
-
- var editor = getActiveEditor();
- if (editor && editor.path.length == 0)
- {
- editor.save(); // Cannot set a bookmark in an unsaved file
- }
-
- if (editor && editor.path.length > 0)
- {
- var selection = editor.getSelection();
- var bookmark = editor.newBookmark( selection.startLineIndex );
-
- if ( bookmark )
- {
- bookmarkMap.add(bookmark.hashKey, bookmark );
- }
- }
- }
-
- !!/Script
-