Changeset 3346
- Timestamp:
- Dec 14, 2018, 7:50:09 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/tabsspaces.e ¶
r3341 r3346 26 26 27 27 if arg1 = '' | not IsNum( arg1) then 28 ' commandline Spaces2Tabs 'word( .tabs, 1)28 'CommandLine Spaces2Tabs 'word( .tabs, 1) 29 29 return 30 30 else … … 304 304 305 305 if arg1 = '' | not IsNum( arg1) then 306 ' commandline Tabs2Spaces 'word( .tabs, 1)306 'CommandLine Tabs2Spaces 'word( .tabs, 1) 307 307 return 308 308 else … … 521 521 fIndentOnly = 0 522 522 endif 523 523 524 fChanged = 0 524 525 TabChar = \9 … … 526 527 TmpLineStr = '' 527 528 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 531 540 if fIndentOnly then 532 541 -- 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 537 547 LeftPart = substr( rest, 1, p - 1) 538 548 RightPart = substr( rest, p) -- including all spaces 539 549 TmpLineStr = TmpLineStr''LeftPart 540 Col = Col + length( LeftPart) 550 Col = Col + length( LeftPart) 551 541 552 SpaceLen = max( 0, verify( RightPart, ' ', 'N') - 1) 553 -- Don't process spaces at line end 542 554 if SpaceLen = 0 then 543 --SpaceLen = length( RightPart) -- Avoid endless loop if spaces at end of line544 -- Don't process spaces at line end545 555 leave 546 556 endif 547 557 rest = substr( rest, p + SpaceLen) -- stripped leading spaces 558 548 559 -- Don't process enquoted string 549 560 if PosInQuotes( TmpLineStr) then -- TmpLineStr is here only left part before current doublespace 550 561 TmpLineStr = TmpLineStr''copies( ' ', SpaceLen) 551 562 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 572 582 enddo 583 573 584 TmpLineStr = TmpLineStr''rest 574 585 return TmpLineStr … … 611 622 pNonBlank = max( 1, verify( LineStr, ' '\t)) 612 623 endif 624 625 -- When fRestoreCol is 1, the line is split at the cursor into 626 -- LeftLineStr and RightLineStr. These parts are separately processed. 613 627 if fRestoreCol then 614 628 Maxn = 2 … … 639 653 ExpCol = .col 640 654 do forever 655 PrevCol = .col 641 656 642 657 display -14 … … 659 674 endif 660 675 endif 676 677 -- The search adanced .col. Advance ExpCol as well. 678 DeltaCol = .col - PrevCol 679 ExpCol = ExpCol + DeltaCol 680 661 681 -- Check pos > indent 662 682 if fIndentOnly then 663 if .col >pNonBlank then683 if ExpCol >= pNonBlank then 664 684 leave 665 685 endif … … 677 697 678 698 SpaceLen = max( 0, verify( RightLineStr, ' ', 'N') - 1) 699 -- Don't process spaces at line end 679 700 if SpaceLen = 0 then 680 --SpaceLen = length( RightLineStr)681 -- Don't process spaces at line end682 701 leave 683 702 endif … … 720 739 if EndCol > -1 then 721 740 EndCol = EndCol - NextSpaceLen + TabLen 722 endif723 if fIndentOnly then724 pNonBlank = pNonBlank - NextSpaceLen + TabLen725 741 endif 726 742 ExpCol = ExpCol + NextSpaceLen … … 753 769 return LineStr 754 770 endif 771 755 772 rest = LineStr 756 773 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 759 780 LeftPart = substr( rest, 1, p - 1) 760 781 TmpLineStr = TmpLineStr''LeftPart 761 782 rest = substr( rest, p + 1) 762 783 Col = length( TmpLineStr) + 1 -- processed columns before current tab char 784 763 785 NextTabCol = Col + TabWidth - ((Col - 1) // TabWidth) 764 786 --NextTabCol = (((Col - 1) % TabWidth) + 1) * TabWidth + 1 -- works as well 765 787 SpaceLen = NextTabCol - Col 766 788 TmpLineStr = TmpLineStr''copies( ' ', SpaceLen) 767 if fChanged = 0 then 768 fChanged = 1 769 endif 770 p = pos( TabChar, rest) 789 fChanged = 1 771 790 enddo 791 772 792 TmpLineStr = TmpLineStr''rest 773 793 return TmpLineStr … … 799 819 getsearch savesearch 800 820 821 -- When fRestoreCol is 1, the line is split at the cursor into 822 -- LeftLineStr and RightLineStr. These parts are separately processed. 801 823 if fRestoreCol then 802 824 Maxn = 2 … … 806 828 807 829 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. 809 832 if n = 1 then 833 -- First part 810 834 ThisStartCol = StartCol 811 835 ThisEndCol = .col - 1 812 836 else 837 -- Second part 813 838 ThisStartCol = ThisEndCol + 1 814 839 ThisEndCol = EndCol 815 840 endif 816 841 else 842 -- Cursor not on this line or fRestoreCol deactivated. 817 843 ThisStartCol = StartCol 818 844 ThisEndCol = EndCol
Note:
See TracChangeset
for help on using the changeset viewer.