home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** $VER: WordToBuff.edge 1.1 (Sunday 08-Aug-93 02:59:36)
- **
- ** Copy the word under the cursor to either the find or replace buffer.
- **
- ** Written by Thomas liljetoft
- */
-
-
- options results
-
- parse arg arg /* get argument */
-
- 'position' eow
- 'cursor' right 1
- 'copy' word back rb /* get word */
-
- /* put word in find or replace buffer */
-
- if arg = "change" then
- 'putenvvar' _fe_replacestring result
- else
- 'putenvvar' _fe_findstring result
-
- exit(0)
-