Changeset 2779


Ignore:
Timestamp:
Oct 29, 2017, 6:46:32 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed start position after a grep or egrep change.
  • Fixed highlighting for a grep or egrep change.
  • Fixed start position for a change followed after a locate.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/locate.e

    r2778 r2779  
    293293   -- If there is no string to change at the cursor, it processes the next
    294294   -- string. For that no cursor move is required.
    295    if SearchMode = 'c' then
     295   if LastSearchMode = 'l' & SearchMode = 'c' then
    296296      fMoveCursor = 0
    297297   endif
    298 
    299    --dprintf( 'fMoveCursor = 'fMoveCursor', fFindNext = 'fFindNext)
     298   --dprintf( '   ProcessSearchPos: fMoveCursor = 'fMoveCursor', fFindNext = 'fFindNext)
    300299
    301300   fSearch = 1
     
    452451   -- The rest is similar for both 'locate' and 'change'
    453452
    454    -- Pos from before the search and maybe move
    455    call psave_pos( savedpos)
    456453   SearchMode = 'l'
    457454
     
    471468   endif
    472469
     470   -- Pos from before the search
     471   call psave_pos( savedpos)
     472
    473473   if fSearch then
    474474      display -8  -- suppress writing to MsgBox
     
    517517defc RepeatChange, C, Change
    518518   universal default_search_options
    519 ;   universal search_len
    520519   universal lastsearchpos
    521520   universal stay  -- if 1, then restore pos even after a successful change
     
    575574   call SetLastSearchArgs( SearchArgs)
    576575
    577    -- Pos from before the search and maybe move
    578    call psave_pos( savedpos)
    579576   SearchMode = 'c'
    580577
     
    595592   endif
    596593
     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
    597617   if fSearch then
    598618      display -8
    599619      'xcom c 'ChangeArgs
    600620      lrc = rc
     621      NewLineLen = length( textline( .line))
    601622      call psave_pos( lpos)
    602623      display 8
     
    620641      -- But getpminfo( EPMINFO_LSLENGTH) gives the value for the search string,
    621642      -- 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)
    626655
    627656      -- Restore pos after change command if stay = 1
     
    635664
    636665   -- Save last searched pos, file and search mode
    637    thissearchpos = .line .col fid length( replace_string) 'c'
     666   thissearchpos = .line .col fid ReplaceLen 'c'
    638667   --dprintf( 'thissearchpos = 'thissearchpos', lastsearchpos = 'lastsearchpos)
    639668   lastsearchpos = thissearchpos
Note: See TracChangeset for help on using the changeset viewer.