Changeset 2779
- Timestamp:
- Oct 29, 2017, 6:46:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r2778 r2779 293 293 -- If there is no string to change at the cursor, it processes the next 294 294 -- string. For that no cursor move is required. 295 if SearchMode = 'c' then295 if LastSearchMode = 'l' & SearchMode = 'c' then 296 296 fMoveCursor = 0 297 297 endif 298 299 --dprintf( 'fMoveCursor = 'fMoveCursor', fFindNext = 'fFindNext) 298 --dprintf( ' ProcessSearchPos: fMoveCursor = 'fMoveCursor', fFindNext = 'fFindNext) 300 299 301 300 fSearch = 1 … … 452 451 -- The rest is similar for both 'locate' and 'change' 453 452 454 -- Pos from before the search and maybe move455 call psave_pos( savedpos)456 453 SearchMode = 'l' 457 454 … … 471 468 endif 472 469 470 -- Pos from before the search 471 call psave_pos( savedpos) 472 473 473 if fSearch then 474 474 display -8 -- suppress writing to MsgBox … … 517 517 defc RepeatChange, C, Change 518 518 universal default_search_options 519 ; universal search_len520 519 universal lastsearchpos 521 520 universal stay -- if 1, then restore pos even after a successful change … … 575 574 call SetLastSearchArgs( SearchArgs) 576 575 577 -- Pos from before the search and maybe move578 call psave_pos( savedpos)579 576 SearchMode = 'c' 580 577 … … 595 592 endif 596 593 594 -- Pos from before the search 595 call psave_pos( savedpos) 596 597 OldLineLength = '' 598 NewLineLength = '' 599 if fSearch then 600 if pos( 'g', lowcase( search_options)) > 0 | pos( 'x', lowcase( search_options)) > 0 then 601 -- For grep and egrep searches only: 602 -- Also build SearchArgs for finding the same line where Change will process 603 -- next. This allows for querying the line length before the change and 604 -- for calculating the change length. 605 TmpSearchArgs = delim''search_string''delim''search_options 606 display -8 607 'xcom l 'TmpSearchArgs 608 if rc = 0 then 609 OldLineLen = length( textline( .line)) 610 --dprintf( 'OldLineLen = 'OldLineLen', .line = '.line) 611 endif 612 call prestore_pos( savedpos) 613 display 8 614 endif 615 endif 616 597 617 if fSearch then 598 618 display -8 599 619 'xcom c 'ChangeArgs 600 620 lrc = rc 621 NewLineLen = length( textline( .line)) 601 622 call psave_pos( lpos) 602 623 display 8 … … 620 641 -- But getpminfo( EPMINFO_LSLENGTH) gives the value for the search string, 621 642 -- not for the change string. 622 -- Therefore estimate its value here to submit it as arg to highlight_match(). 623 -- This likely gives a wrong result for a grep search. 624 SearchLen = length( replace_string) 625 call highlight_match( .line .col SearchLen) 643 -- While for a non-grep search the length of the replacement string 644 -- is known, it has to be calculated with the line length from before 645 -- the change for a grep search. 646 if pos( 'g', lowcase( search_options)) > 0 | pos( 'x', lowcase( search_options)) > 0 then 647 OldLen = getpminfo( EPMINFO_LSLENGTH) 648 NewLen = OldLen - OldLineLen + NewLineLen 649 --dprintf( 'NewLen = 'NewLen) 650 ReplaceLen = NewLen 651 else 652 ReplaceLen = length( replace_string) 653 endif 654 call highlight_match( .line .col ReplaceLen) 626 655 627 656 -- Restore pos after change command if stay = 1 … … 635 664 636 665 -- Save last searched pos, file and search mode 637 thissearchpos = .line .col fid length( replace_string)'c'666 thissearchpos = .line .col fid ReplaceLen 'c' 638 667 --dprintf( 'thissearchpos = 'thissearchpos', lastsearchpos = 'lastsearchpos) 639 668 lastsearchpos = thissearchpos
Note:
See TracChangeset
for help on using the changeset viewer.