Changeset 2870
- Timestamp:
- Jan 14, 2018, 8:14:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r2867 r2870 251 251 -- This is executed before a search and can therefore check position. 252 252 fFindNext = 0 253 do i= 1 to 1253 do once = 1 to 1 254 254 255 255 -- Remove FR+- from previous and next search options … … 273 273 if fid <> LastFid then 274 274 leave 275 endif 276 if PrevSearchString <> search_string then 275 elseif PrevSearchString <> search_string then 277 276 leave 278 endif 279 if PrevOpts <> NextOpts then 280 leave 281 endif 282 283 -- If the cursor was moved manually after the last search, don't move it 284 -- before the next search. 285 if LastLine <> .line | LastCol <> .col then 277 elseif PrevOpts <> NextOpts then 286 278 leave 287 279 endif … … 311 303 enddo 312 304 endif 305 306 fCursorPosChanged = 0 307 do once = 1 to 1 308 -- If the cursor was moved manually after the last search, don't move it 309 -- before the next search. 310 if LastLine = .line & LastCol = .col then 311 leave 312 endif 313 fCursorPosChanged = 1 314 enddo 313 315 314 316 -- FindNext or backward: Move cursor first to not find the just found string again … … 322 324 --dprintf( ' ProcessSearchPos: Search mode: l -> c ==> leave') 323 325 leave 324 e ndif325 326 if fFindNext | not fForeward then326 elseif fCursorPosChanged then 327 leave 328 elseif fFindNext | not fForeward then 327 329 -- FindNext requires to move the cursor first, before the next search. 328 330 -- Reverse search requires to move the cursor first, before the next search … … 407 409 if .line = marklastline then 408 410 if .col > marklastcol then 409 fSearch = 0 411 fSearch = 0 412 endif 410 413 endif 411 endif412 414 endif 413 415 else … … 432 434 ; search within a mark and 433 435 ; o recognizes if a search within a mark is restarted (and should rather be 434 ; st pped)436 ; stopped) 435 437 ; o checks if found string is completely within the mark ((required for 436 438 ; char mark only)) … … 571 573 ; 'T' and 'B' in default_search_options for this locate command. 572 574 ; 573 ; Moved from STDCMDS.E574 575 ; Note: this DEFC also gets executed by the slash ('/') command and by the 575 576 ; search dialog. The search dialog adds option 'D'. … … 725 726 726 727 ; --------------------------------------------------------------------------- 727 ; Moved from STDCMDS.E728 728 defc RepeatChange, C, Change 729 729 universal default_search_options … … 812 812 fRestorePos = 1 813 813 814 OldLineLen gth= 0815 NewLineLen gth= 0814 OldLineLen = 0 815 NewLineLen = 0 816 816 if fSearch then 817 817 if pos( 'G', search_options) > 0 | pos( 'X', search_options) > 0 then … … 928 928 929 929 ; --------------------------------------------------------------------------- 930 ; Moved from STDPROCS.E931 930 ; Highlight a "hit" after a Locate command or Repeat_find operation. 932 931 ; Never used its previous arg(1) = search_len in 6.03b. … … 1095 1094 1096 1095 ; --------------------------------------------------------------------------- 1097 ; Moved from STDCTRL.E1098 1096 ; Can also be called with C or F as arg to repeat last change or find. 1099 1097 /* … … 1528 1526 1529 1527 ; --------------------------------------------------------------------------- 1530 ; Moved from MOUSE.E1531 1528 ; Find identifier under cursor -- if arg(1) > 0: -- under pointer. 1532 1529 defc FindToken
Note:
See TracChangeset
for help on using the changeset viewer.