Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Idget Library : Edit Controls : edit.point

Syntax

#(%edit.point,%where)

%edit specifies an edit control. %where specifies where the point (caret) should be moved.

A < means to move the point one character to the left. A > means to move the point one character to the right.

A ^ means to move the point to the beginning of the line. A [ means to move the point to the beginning of the buffer. A $ means to move the point to the end of the line. A ] means to move the point to the end of the buffer.

A { means to move the point left to the first character whose syntax is space. A } means to move the point right to the first character whose syntax is space. A - means to move the point left to the first character whose syntax is word. A + means to move the point right to the first character whose syntax is word.

Example

The following example will move the point to two characters from the left end of the line.

#(example.edit.point,^>>)