Changeset 2870


Ignore:
Timestamp:
Jan 14, 2018, 8:14:18 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • ProsessSearchPos: Changed temp. removement of T and B search parameters. Now the cursor pos. can be changed manually without letting the search action start from the top (T) or bottom (B) again, if specified.
  • Fixed error message "Invalid number argument" for defc Change.
  • Cosmetic changes.
File:
1 edited

Legend:

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

    r2867 r2870  
    251251   -- This is executed before a search and can therefore check position.
    252252   fFindNext = 0
    253    do i = 1 to 1
     253   do once = 1 to 1
    254254
    255255      -- Remove FR+- from previous and next search options
     
    273273      if fid <> LastFid then
    274274         leave
    275       endif
    276       if PrevSearchString <> search_string then
     275      elseif PrevSearchString <> search_string then
    277276         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
    286278         leave
    287279      endif
     
    311303      enddo
    312304   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
    313315
    314316   -- FindNext or backward: Move cursor first to not find the just found string again
     
    322324         --dprintf( '   ProcessSearchPos: Search mode: l -> c ==> leave')
    323325         leave
    324       endif
    325 
    326       if fFindNext | not fForeward then
     326      elseif fCursorPosChanged then
     327         leave
     328      elseif fFindNext | not fForeward then
    327329         -- FindNext requires to move the cursor first, before the next search.
    328330         -- Reverse search requires to move the cursor first, before the next search
     
    407409            if .line = marklastline then
    408410               if .col > marklastcol then
    409                fSearch = 0
     411                  fSearch = 0
     412               endif
    410413            endif
    411          endif
    412414         endif
    413415      else
     
    432434; search within a mark and
    433435; o  recognizes if a search within a mark is restarted (and should rather be
    434 ;    stpped)
     436;    stopped)
    435437; o  checks if found string is completely within the mark ((required for
    436438;    char mark only))
     
    571573; 'T' and 'B' in default_search_options for this locate command.
    572574;
    573 ; Moved from STDCMDS.E
    574575; Note:  this DEFC also gets executed by the slash ('/') command and by the
    575576; search dialog. The search dialog adds option 'D'.
     
    725726
    726727; ---------------------------------------------------------------------------
    727 ; Moved from STDCMDS.E
    728728defc RepeatChange, C, Change
    729729   universal default_search_options
     
    812812   fRestorePos = 1
    813813
    814    OldLineLength = 0
    815    NewLineLength = 0
     814   OldLineLen = 0
     815   NewLineLen = 0
    816816   if fSearch then
    817817      if pos( 'G', search_options) > 0 | pos( 'X', search_options) > 0 then
     
    928928
    929929; ---------------------------------------------------------------------------
    930 ; Moved from STDPROCS.E
    931930; Highlight a "hit" after a Locate command or Repeat_find operation.
    932931; Never used its previous arg(1) = search_len in 6.03b.
     
    10951094
    10961095; ---------------------------------------------------------------------------
    1097 ; Moved from STDCTRL.E
    10981096; Can also be called with C or F as arg to repeat last change or find.
    10991097/*
     
    15281526
    15291527; ---------------------------------------------------------------------------
    1530 ; Moved from MOUSE.E
    15311528; Find identifier under cursor -- if arg(1) > 0: -- under pointer.
    15321529defc FindToken
Note: See TracChangeset for help on using the changeset viewer.