Changeset 3346


Ignore:
Timestamp:
Dec 14, 2018, 7:50:09 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
File:
1 edited

Legend:

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

    r3341 r3346  
    2626
    2727   if arg1 = '' | not IsNum( arg1) then
    28       'commandline Spaces2Tabs 'word( .tabs, 1)
     28      'CommandLine Spaces2Tabs 'word( .tabs, 1)
    2929      return
    3030   else
     
    304304
    305305   if arg1 = '' | not IsNum( arg1) then
    306       'commandline Tabs2Spaces 'word( .tabs, 1)
     306      'CommandLine Tabs2Spaces 'word( .tabs, 1)
    307307      return
    308308   else
     
    521521      fIndentOnly = 0
    522522   endif
     523
    523524   fChanged = 0
    524525   TabChar = \9
     
    526527   TmpLineStr = ''
    527528   Col = 1
    528    p = pos( '  ', rest)
    529    pNonBlank = max( 1, verify( rest, ' '\t))
    530    do while p <> 0
     529
     530   if fIndentOnly then
     531      pNonBlank = max( 1, verify( rest, ' '\t))
     532   endif
     533
     534   do forever
     535      p = pos( '  ', rest)
     536      if p = 0 then
     537         leave
     538      endif
     539
    531540      if fIndentOnly then
    532541         -- Check pos > indent
    533          if p > pNonBlank then
    534             leave
    535          endif
    536       endif
     542         if Col + p >= pNonBlank then
     543            leave
     544         endif
     545      endif
     546
    537547      LeftPart  = substr( rest, 1, p - 1)
    538548      RightPart = substr( rest, p)  -- including all spaces
    539549      TmpLineStr = TmpLineStr''LeftPart
    540       Col  = Col + length( LeftPart)
     550      Col = Col + length( LeftPart)
     551
    541552      SpaceLen = max( 0, verify( RightPart, ' ', 'N') - 1)
     553      -- Don't process spaces at line end
    542554      if SpaceLen = 0 then
    543          --SpaceLen = length( RightPart)  -- Avoid endless loop if spaces at end of line
    544          -- Don't process spaces at line end
    545555         leave
    546556      endif
    547557      rest = substr( rest, p + SpaceLen)  -- stripped leading spaces
     558
    548559      -- Don't process enquoted string
    549560      if PosInQuotes( TmpLineStr) then  -- TmpLineStr is here only left part before current doublespace
    550561         TmpLineStr = TmpLineStr''copies( ' ', SpaceLen)
    551562         Col = Col + SpaceLen
    552       else
    553          -- Convert spaces
    554          do while SpaceLen > 0
    555             NextTabCol = Col + TabWidth - ((Col - 1) // TabWidth)
    556             --NextTabCol = (((Col - 1) % TabWidth) + 1) * TabWidth + 1  -- works as well
    557             if (NextTabCol > Col) & (Col + SpaceLen >= NextTabCol) then
    558                TmpLineStr = TmpLineStr''TabChar
    559                SpaceLen = SpaceLen - (NextTabCol - Col)
    560                Col = NextTabCol
    561                if fChanged = 0 then
    562                   fChanged = 1
    563                endif
    564             else
    565                TmpLineStr = TmpLineStr''copies( ' ', SpaceLen)
    566                Col = Col + SpaceLen
    567                SpaceLen = 0
    568             endif
    569          enddo
    570       endif
    571       p = pos( '  ', rest)
     563         SpaceLen = 0
     564      endif
     565
     566      -- Convert spaces
     567      do while SpaceLen > 0
     568         NextTabCol = Col + TabWidth - ((Col - 1) // TabWidth)
     569         --NextTabCol = (((Col - 1) % TabWidth) + 1) * TabWidth + 1  -- works as well
     570         if (NextTabCol > Col) & (Col + SpaceLen >= NextTabCol) then
     571            TmpLineStr = TmpLineStr''TabChar
     572            SpaceLen = SpaceLen - (NextTabCol - Col)
     573            Col = NextTabCol
     574            fChanged = 1
     575         else
     576            TmpLineStr = TmpLineStr''copies( ' ', SpaceLen)
     577            Col = Col + SpaceLen
     578            SpaceLen = 0
     579         endif
     580      enddo
     581
    572582   enddo
     583
    573584   TmpLineStr = TmpLineStr''rest
    574585   return TmpLineStr
     
    611622      pNonBlank = max( 1, verify( LineStr, ' '\t))
    612623   endif
     624
     625   -- When fRestoreCol is 1, the line is split at the cursor into
     626   -- LeftLineStr and RightLineStr. These parts are separately processed.
    613627   if fRestoreCol then
    614628      Maxn = 2
     
    639653      ExpCol = .col
    640654      do forever
     655         PrevCol = .col
    641656
    642657         display -14
     
    659674            endif
    660675         endif
     676
     677         -- The search adanced .col. Advance ExpCol as well.
     678         DeltaCol = .col - PrevCol
     679         ExpCol = ExpCol + DeltaCol
     680
    661681         -- Check pos > indent
    662682         if fIndentOnly then
    663             if .col > pNonBlank then
     683            if ExpCol >= pNonBlank then
    664684               leave
    665685            endif
     
    677697
    678698         SpaceLen = max( 0, verify( RightLineStr, ' ', 'N') - 1)
     699         -- Don't process spaces at line end
    679700         if SpaceLen = 0 then
    680             --SpaceLen = length( RightLineStr)
    681             -- Don't process spaces at line end
    682701            leave
    683702         endif
     
    720739         if EndCol > -1 then
    721740            EndCol = EndCol - NextSpaceLen + TabLen
    722          endif
    723          if fIndentOnly then
    724             pNonBlank = pNonBlank - NextSpaceLen + TabLen
    725741         endif
    726742         ExpCol = ExpCol + NextSpaceLen
     
    753769      return LineStr
    754770   endif
     771
    755772   rest = LineStr
    756773   TmpLineStr = ''
    757    p = pos( TabChar, rest)
    758    do while p <> 0
     774   do forever
     775      p = pos( TabChar, rest)
     776      if p = 0 then
     777         leave
     778      endif
     779
    759780      LeftPart = substr( rest, 1, p - 1)
    760781      TmpLineStr = TmpLineStr''LeftPart
    761782      rest = substr( rest, p + 1)
    762783      Col = length( TmpLineStr) + 1  -- processed columns before current tab char
     784
    763785      NextTabCol = Col + TabWidth - ((Col - 1) // TabWidth)
    764786      --NextTabCol = (((Col - 1) % TabWidth) + 1) * TabWidth + 1  -- works as well
    765787      SpaceLen = NextTabCol - Col
    766788      TmpLineStr  = TmpLineStr''copies( ' ', SpaceLen)
    767       if fChanged = 0 then
    768          fChanged = 1
    769       endif
    770       p = pos( TabChar, rest)
     789      fChanged = 1
    771790   enddo
     791
    772792   TmpLineStr = TmpLineStr''rest
    773793   return TmpLineStr
     
    799819   getsearch savesearch
    800820
     821   -- When fRestoreCol is 1, the line is split at the cursor into
     822   -- LeftLineStr and RightLineStr. These parts are separately processed.
    801823   if fRestoreCol then
    802824      Maxn = 2
     
    806828
    807829   do n = 1 to Maxn
    808       if fRestoreCol then
     830      if fRestoreCol then  -- means: Line = .line
     831         -- Cursor is on this line. Split line at cursor.
    809832         if n = 1 then
     833            -- First part
    810834            ThisStartCol = StartCol
    811835            ThisEndCol   = .col - 1
    812836         else
     837            -- Second part
    813838            ThisStartCol = ThisEndCol + 1
    814839            ThisEndCol   = EndCol
    815840         endif
    816841      else
     842         -- Cursor not on this line or fRestoreCol deactivated.
    817843         ThisStartCol = StartCol
    818844         ThisEndCol   = EndCol
Note: See TracChangeset for help on using the changeset viewer.