TEditSelectionOpsExtras.mesa
Copyright Ó 1989, 1991 by Xerox Corporation. All rights reserved.
Michael Plass, March 15, 1989 12:21:02 pm PST
Some things formerly in EditorComfortablePositioning.mesa, plus some other new stuff.
DIRECTORY Rope USING [ROPE], ViewerClasses USING [Viewer];
TEditSelectionOpsExtras: CEDAR DEFINITIONS
~
BEGIN
OPEN Rope, ViewerClasses;
CurrentPositionMessage:
PUBLIC
PROC [viewer: Viewer, skipCommentNodes:
BOOL]
RETURNS [
ROPE];
GoToEndOfNode:
PUBLIC
PROC [n:
INT ¬ 1];
Move caret to end of node, or if already there, go forward one node. The argument is the repeat count; Negative arguments go backward.
END.