Changeset 3257
- Timestamp:
- Nov 15, 2018, 10:29:56 PM (6 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/assist.e ¶
r3256 r3257 72 72 ; Included TeX extensions for the passist procedure by Petr Mikulik from his 73 73 ; PMCSTeX package. 74 ; Added c_8 for german keyboards. 75 76 ; 77 ; 2006 changes: JBS 78 ; 79 ; A major rework of the code 80 ; Bugs were fixed 81 ; More tokens are balanced, including the start and end points of multi-line comments 82 ; More modes supported (PASCAL, FORTRAN77, JAVA, WARPIN) 83 ; Added initial stages of support for ADA, CSS, PERL, PHP 84 ; Code was added to ensure tokens found within comments or literals were not matched 85 ; Better variable names and code documentation 86 ; 74 75 ; 2006 changes: JBS 76 ; A major rework of the code: 77 ; o Bugs were fixed. 78 ; o More tokens are balanced, including the start and end points of 79 ; multi-line comments. 80 ; o More modes supported (PASCAL, FORTRAN77, JAVA, WARPIN). 81 ; o Added initial stages of support for ADA, CSS, PERL, PHP. 82 ; o Code was added to ensure tokens found within comments or literals were 83 ; not matched. 84 ; o Better variable names and code documentation. 85 ; o Contains procs that return if a position is within a multi-line commemt, 86 ; single-line comment or literal. 87 88 ; After that: 89 ; o Commented out debug messages (minor speed improvement). 90 ; o Replaced searching in the MLC array (big speed improvement). 91 ; o Renamed procs and vars. 92 ; o Added more procs for use from outside. 93 ; o Added optional line and col parameters for querying another than 94 ; current position. 95 ; o Use the comment and literal procs now by tags and syntax expansion. 96 97 ; Ideas: 98 ; o Use attributes for marking MLCs and scan only that region that has 99 ; changed. 100 ; o Use attributes for tags and scan only that region that has changed. 87 101 88 102 compile if not defined(SMALL) -- If SMALL not defined, then being separately compiled. … … 107 121 108 122 const 109 -- NOTE: The logic below relies on GOLD being defined with the left "brackets" 110 -- in the odd positions and the right "brackets" in the even positions. 123 -- NOTE: The logic below relies on GOLD being defined with the left 124 -- "brackets" in the odd positions and the right "brackets" in 125 -- the even positions. 111 126 GOLD = '(){}[]<>' -- Parens, braces, brackets & angle brackets 112 127 … … 126 141 -- ever supports {, } and possibly other egrep metacharacters 127 142 128 -- JBSQ: The following constants 'hard-code' the versions of NMAKE and FORTRAN77 for which129 -- passist works. Perhaps there is a better way that would allow this to be130 -- selected by the user?143 -- JBSQ: The following constants 'hard-code' the versions of NMAKE and 144 -- FORTRAN77 for which passist works. Perhaps there is a better way 145 -- that would allow this to be selected by the user? 131 146 compile if not defined( USE_NMAKE32) 132 147 USE_NMAKE32 = 1 -- 0 means do not accept NMAKE32-specific directives … … 191 206 ; nestlevel = counter for nesting of matched tokens. On nestlevel = 0, 192 207 ; the matched token was found. 193 ; ---------------------------------------------------------------------------194 195 208 defproc passist 196 209 call psave_pos( savepos) -- Save the cursor location … … 198 211 199 212 StartLineNum = .line 200 VerboseLevel = arg( 1) -- 0 = quiet, 1 = normal201 fHighlight = arg( 2) -- 1 = highlighting of matching expression and scrolling202 MaxLines = arg( 3)203 MaxLoops = arg( 4)213 VerboseLevel = arg( 1) -- 0 = quiet, 1 = normal 214 fHighlight = arg( 2) -- 1 = highlighting of matching expression and scrolling 215 MaxLines = arg( 3) 216 MaxLoops = arg( 4) 204 217 if VerboseLevel <> 0 then 205 218 VerboseLevel = 1 … … 214 227 MaxLoops = ASSIST_DEFAULT_MAX_LOOPS 215 228 endif 216 SearchLimitData = StartLineNum MaxLines MaxLoops -- Use one arg for assist_search to save args229 SearchLimitData = StartLineNum MaxLines MaxLoops -- Use one arg for AssistSearch to save args 217 230 218 231 case = 'e' -- respect case is default … … 239 252 240 253 do once = 1 to 1 241 assist_rc = inside_comment2( CurMode, comment_data)254 assist_rc = InsideComment2( CurMode, comment_data) 242 255 --#dprintf( "passist", "comment return:" assist_rc comment_data) 243 256 if assist_rc = ASSIST_RC_IN_MULTILINE_COMMENT then … … 260 273 endif 261 274 262 if inside_literal( CurMode) then275 if InsideLiteral( CurMode) then 263 276 assist_rc = ASSIST_RC_IN_LITERAL 264 277 leave … … 307 320 308 321 -- get the word under cursor and return startcol and endcol 309 -- stop at separators = arg( 3)310 -- stop at double char separators = arg( 4)322 -- stop at separators = arg( 3) 323 -- stop at double char separators = arg( 4) 311 324 if not find_token( startcol, endcol, seps, '/* */') then -- JBSQ: Should /* */ be used for ALL modes? 312 325 assist_rc = ASSIST_RC_NOT_ON_A_TOKEN … … 413 426 .col = startcol 414 427 else -- move to end, so first Locate will hit this instance. 415 end _line428 endline 416 429 endif 417 430 fIntermediate = (substr( lcword2, 2, 1) = 'l') … … 440 453 .col = length( part1) + 1 441 454 else -- move to end, so first Locate will hit this instance. 442 end _line455 endline 443 456 endif 444 457 fIntermediate = (substr( lcword2, 2, 1) = 'l') … … 558 571 559 572 -- Mode(s): C, JAVA JAVASCRIPT and RC ------------------------------------------------------- 560 elseif wordpos( Cur mode, 'C JAVA RC JAVASCRIPT') > 0 then573 elseif wordpos( CurMode, 'C JAVA RC JAVASCRIPT') > 0 then 561 574 562 575 -- JBSQ: Was this "if" left out on purpose? … … 565 578 if wordpos( id, 'if ifdef ifndef endif else elif') > 0 then -- Check for "# if", etc. 566 579 .col = startcol 567 if next_nonblank_noncomment_nonliteral( mode, '-R') = '#' then580 if NextCodeChar( Mode, .line, .col, '-R') = '#' then 568 581 id = '#'id 569 582 startcol = .col … … 577 590 578 591 ---- Directive(s): #if #ifdef #ifndef #endif #else #elif 579 elseif wordpos( id, '#if #ifdef #ifndef #endif #else #elif') then592 elseif wordpos( id, '#if #ifdef #ifndef #endif #else #elif') then 580 593 if CurMode <> 'JAVA' and CurMode <> 'JAVASCRIPT' then 581 594 search = '\#[ \t]*\c((if((n?def)?))|endif)([ \t]|$)' … … 609 622 clen = 1 610 623 nestlevel = -1 -- -1 = stop on first 'hit' 611 assist_rc = assist_search( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData)624 assist_rc = AssistSearch( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData) 612 625 if assist_rc then 613 626 assist_rc = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN … … 635 648 clen = 1 636 649 nestlevel = 0 637 assist_rc = assist_search( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData)650 assist_rc = AssistSearch( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData) 638 651 if assist_rc then -- no conditional?? 639 652 assist_rc = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN 640 653 else 641 nextchar = next_nonblank_noncomment_nonliteral( CurMode)654 nextchar = NextCodeChar( CurMode) 642 655 if not nextchar then 643 656 assist_rc = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN … … 661 674 endif 662 675 /* 663 JBSQ: The following code should work for break/continue statements within nested do and for loops664 which have braces. Problems arise if there are DOs or FORs without braces between the665 break/continue and the enclosing loop. Also problems arise if the enclosing loop is a666 while loop.676 JBSQ: The following code should work for break/continue statements within 677 nested do and for loops which have braces. Problems arise if there are 678 DOs or FORs without braces between the break/continue and the enclosing 679 loop. Also problems arise if the enclosing loop is a while loop. 667 680 668 681 The solution, if it is worth it, is to code the entire search here so that these different … … 712 725 else 713 726 -- This code seems to handle matching the beginning and end of 714 -- a) functions when the cursor is on a token preceding the parameter list 727 -- a) functions when the cursor is on a token preceding the 728 -- parameter list 715 729 -- b) 'if' when the 'if' has following braces 716 730 -- c) 'for' when the 'for' has following braces … … 719 733 -- e.g. catch ( ) { ... } 720 734 721 -- JBSQ: Check for next_nonblank_noncomemnt_nonliteral(CurMode) = '(' first? 722 -- (This would force the cursor to actually be on the function name. 723 -- The current code allows the cursor on any nonblank, noncomment, 724 -- nonliteral character preceding the parameter list.) 735 -- JBSQ: Check for NextCodeChar( CurMode) = '(' first? 736 -- (This would force the cursor to actually be on the function 737 -- name. The current code allows the cursor on any nonblank, 738 -- noncomment, nonliteral character preceding the parameter 739 -- list.) 725 740 setsearch 'xcom l /[()]/xe+F' -- find the ending ')' or ; 726 741 clist = '{' … … 729 744 clen = 1 730 745 nestlevel = 0 731 assist_rc = assist_search( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData)746 assist_rc = AssistSearch( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData) 732 747 --#dprintf( 'passist', 'last chance c,... srch_rc line col' assist_rc .line .col) 733 748 if not assist_rc and substr( textline( .line), .col, 1) = ')' then -- no conditional?? 734 749 assist_rc = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN 735 nextchar = next_nonblank_noncomment_nonliteral( CurMode)750 nextchar = NextCodeChar( CurMode) 736 751 if nextchar then 737 752 --#dprintf( "passist", "Generic token () {; search found: "nextchar) … … 773 788 elseif id = 'else' then 774 789 .col = startcol 775 pchar = next_nonblank_noncomment_nonliteral( CurMode, '-R')790 pchar = NextCodeChar( CurMode, .line, .col, '-R') 776 791 --#dprintf( "passist", 'Previous char:' pchar) 777 792 if lowcase( pchar) = 'd' then … … 961 976 case = 'c' -- Case insensitive for all MAKE tokens 962 977 id = lowcase( id) 963 -- Currently ALL balanceable MAKE tokens must be on a line with '!' in column 1964 -- and if there are any characters between the '!' and the token they must965 -- be whitespace.978 -- Currently ALL balanceable MAKE tokens must be on a line with 979 -- '!' in column 1 and if there are any characters between the '!' 980 -- and the token they must be whitespace. 966 981 if leftstr( line, 1) = '!' then 967 982 if startcol > 2 then -- Are there characters between '!' and token? … … 1010 1025 1011 1026 -- Mode(s): Pascal -------------------------------------------------------------------------- 1012 elseif Cur mode = 'PASCAL' then1027 elseif CurMode = 'PASCAL' then 1013 1028 1014 1029 case = 'c' -- case insensitive for PASCAL … … 1044 1059 1045 1060 elseif wordpos( id, 'while for') then 1046 -- check for begin before ';' (i.e a block loop instead of a single statement loop) 1061 -- Check for begin before ';' (i.e a block loop instead of a 1062 -- single statement loop) 1047 1063 setsearch 'xcom l /[ \t]\cdo([ \t]|$)/x'case'c+F' -- find the end of following 'do' 1048 1064 clist = 'd' … … 1050 1066 clen = 1 1051 1067 nestlevel = -1 -- -1 = stop on first 'hit' 1052 assist_rc = assist_search( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData)1068 assist_rc = AssistSearch( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData) 1053 1069 do once2 = 1 to 1 1054 1070 if assist_rc then -- no 'do'?? … … 1057 1073 endif 1058 1074 .col = .col + 2 1059 nextchar = next_nonblank_noncomment_nonliteral( CurMode)1075 nextchar = NextCodeChar( CurMode) 1060 1076 if not nextchar then 1061 1077 assist_rc = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN … … 1098 1114 1099 1115 -- Mode(s): TEX ----------------------------------------------------------------------------- 1100 elseif Cur mode = 'TEX' then1116 elseif CurMode = 'TEX' then 1101 1117 1102 1118 -- begin addition for TeX 1103 -- NOTE: There is some special code for \begin and \end which depends on 'clist'1104 -- being set to 'be' or 'en'. If it becomes necessary to use these values1105 -- for 'clist' for other TEX tokens, then the special code for \begin and1106 -- end will break.1119 -- NOTE: There is some special code for \begin and \end which depends 1120 -- on 'clist' being set to 'be' or 'en'. If it becomes necessary 1121 -- to use these values for 'clist' for other TEX tokens, then the 1122 -- special code for \begin and \end will break. 1107 1123 coffset = 1 -- most TEX tokens use this offset 1108 1124 -- //PM additions: balanceable tokens for (La)TeX … … 1125 1141 ---- LaTeX environment: \begin{...}, \end{...} 1126 1142 .col = endcol 1127 if next_nonblank_noncomment_nonliteral( CurMode) == '{' then1143 if NextCodeChar( CurMode) == '{' then 1128 1144 --#dprintf( 'passist', 'TEX: found } at '.line .col) 1129 1145 temp = substr( textline( .line), .col) … … 1211 1227 elseif (CurMode = 'FORTRAN77') then 1212 1228 1213 -- This code disregards the "token" and allows the cursor anywhere within1214 -- columns 7 ... 721229 -- This code disregards the "token" and allows the cursor anywhere 1230 -- within columns 7 ... 72 1215 1231 if .col > 6 and .col < 73 then 1216 statement = fortran77_extract_text( .line)1232 statement = Fortran77ExtractText( .line) 1217 1233 do i = .line + 1 to .last 1218 1234 temp = textline( i) … … 1220 1236 leave 1221 1237 elseif not pos( leftstr( temp, 1), 'C*') then 1222 statement = statement'' fortran77_extract_text( i)1238 statement = statement''Fortran77ExtractText( i) 1223 1239 endif 1224 1240 enddo 1225 statement = fortran77_remove_spaces( statement)1241 statement = Fortran77RemoveSpaces( statement) 1226 1242 1227 1243 if leftstr( statement, 2) = 'DO' then … … 1252 1268 --#dprintf( 'passist', 'F77 search rc: 'rc) 1253 1269 compile if 0 1254 --DO/ENDDO is not FORTRAN77 but the code (esp. the regex search string) for future use 1270 -- DO/ENDDO is not FORTRAN77 but the code (esp. the regex 1271 -- search string) for future use 1255 1272 else -- DO var = xx,limit loop 1256 1273 search = '^[ 0-9][ 0-9][ 0-9][ 0-9][ 0-9].[ ]*\c((D[ ]*O[ ]*[A-Z][A-Z0-9]*[ ]*=.+,)|(E[ ]*N[ ]*D[ ]*D[ ]*O))' … … 1265 1282 1266 1283 compile if 0 1267 --DO/ENDDO is not FORTRAN77 but the code (esp. the regex search string) for future use 1284 -- DO/ENDDO is not FORTRAN77 but the code (esp. the regex search 1285 -- string) for future use 1268 1286 elseif statement = 'ENDDO' then 1269 1287 search = '^[ 0-9][ 0-9][ 0-9][ 0-9][ 0-9].[ ]*\c((D[ ]*O[ ]*[A-Z][A-Z0-9]*[ ]*=.+,)|(E[ ]*N[ ]*D[ ]*D[ ]*O))' … … 1274 1292 1275 1293 compile if 0 1276 ; - FORTRAN77 support (beyond the generic ()[]{} matching and do <label> ...) is disabled. 1277 ; - The code below tries to match "Block" IFs (i.e. IF(<condiiton>)THEN ... ENDIF) 1278 ; - But FORTRAN allows statements to be contiued. This means that for "IF (confition) THEN" 1279 ; the IF and the THEN might be on different lines. 1280 ; - For long conditions the use of continuations can make stylistic sense. For example: 1281 ; IF( CARDS(I)(2:2) .EQ. 'J' 1282 ; 1 .OR. CARDS(I)(2:2) .EQ. 'Q' 1283 ; 2 .OR. CARDS(I)(2:2) .EQ. 'K' )THEN 1284 ; - Unless grep searches start supporting searches across multiple lines, the only way to 1285 ; implement matching with this kind of code is 1286 ; 1) Create a temporary file 1287 ; 2) Rewrite the original file in to the temp file, "merging" the continuation lines in the process 1288 ; 3) Somehow keep track of which columns of the merged lines came from which lines and columns of the original file 1289 ; 4) Perform a search on the temp file 1290 ; 5) Use the data from #3 to map the location of the "found" string back into the original file 1291 ; 6) Discard the temp file 1292 ; - At this time the effort need to make this work was deemed not worth the "value" of matching 1293 ; "Block" IFs in FORTRAN. 1294 -- o FORTRAN77 support (beyond the generic ()[]{}-matching and 1295 -- do <label> ...) is disabled. 1296 -- o The code below tries to match "Block" IFs (i.e. 1297 -- IF(<condiiton>)THEN ... ENDIF) 1298 -- o But FORTRAN allows statements to be contiued. This means 1299 -- that for "IF (confition) THEN" the IF and the THEN might 1300 -- be on different lines. 1301 -- o For long conditions, the use of continuations can make 1302 -- stylistic sense. For example: 1303 -- IF( CARDS(I)(2:2) .EQ. 'J' 1304 -- 1 .OR. CARDS(I)(2:2) .EQ. 'Q' 1305 -- 2 .OR. CARDS(I)(2:2) .EQ. 'K' )THEN 1306 -- o Unless grep searches start supporting searches across 1307 -- multiple lines, the only way to implement matching with 1308 -- this kind of code is 1309 -- 1) Create a temporary file 1310 -- 2) Rewrite the original file in to the temp file, "merging" 1311 -- the continuation lines in the process 1312 -- 3) Somehow keep track of which columns of the merged lines 1313 -- came from which lines and columns of the original file 1314 -- 4) Perform a search on the temp file 1315 -- 5) Use the data from #3 to map the location of the "found" 1316 -- string back into the original file 1317 -- 6) Discard the temp file 1318 -- o At this time the effort need to make this work was deemed 1319 -- not worth the "value" of matching 1320 1321 -- "Block" IFs in FORTRAN. 1294 1322 elseif leftstr( statement, 3) = 'IF(' then 1295 1323 if pos( ')THEN', statement) then -- Assume ')THEN' is NOT in a literal? … … 1321 1349 1322 1350 compile if 0 1323 ; FORTRAN77 does not require END of program/subroutine/function statements, nor is a PROGRAM statement require 1351 -- FORTRAN77 does not require END of program/subroutine/function 1352 -- statements, nor is a PROGRAM statement require 1324 1353 elseif not pos( '=', statement) then -- remaining matchable tokens require this 1325 1354 function_pos = pos( 'FUNCTION', statement) … … 1408 1437 -- o checks for too many processed lines and 1409 1438 -- o does additional search for the modes E and TEX. 1410 assist_rc = assist_search( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData, tex_env, ECompileFlag)1439 assist_rc = AssistSearch( CurMode, clist, case, coffset, clen, nestlevel, SearchLimitData, tex_env, ECompileFlag) 1411 1440 endif -- if OK to search 1412 1441 … … 1448 1477 call ScrollAfterLocate( savepos, lpos, ScrollToTopBot, '-4 -4') 1449 1478 1450 -- At this time, GetPmInfo( EPMINFO_SEARCHPOS) has the value 0, not the col 1451 -- after the last search. Additionally, the second search was executed, so 1452 -- the position data of the first search has changed. Therefore submit the 1453 -- data from after the starting seach to CircleIt as arg: 1479 -- At this time, GetPmInfo( EPMINFO_SEARCHPOS) has the value 0, not 1480 -- the col after the last search. Additionally, the second search 1481 -- was executed, so the position data of the first search has 1482 -- changed. Therefore submit the data from after the starting seach 1483 -- to CircleIt as arg: 1454 1484 call highlight_match( HighlightLine HighlightCol HighlightLen) 1455 1485 endif … … 1466 1496 1467 1497 ; --------------------------------------------------------------------------- 1468 ; assist_search: perform the actual search for the matching token (which is 1469 ; NOT located within a comment or literal). 1470 ; --------------------------------------------------------------------------- 1471 defproc assist_search( mode, clist, case, coffset, clen, nestlevel, SearchLimitData) 1498 ; Performs the actual search for the matching token (which is NOT located 1499 ; within a comment or literal). 1500 defproc AssistSearch( Mode, clist, case, coffset, clen, nestlevel, SearchLimitData) 1472 1501 parse value SearchLimitData with StartLineNum MaxLines MaxLoops 1473 tex_env = arg( 8)1474 ECompileFlag = arg( 9)1502 tex_env = arg( 8) 1503 ECompileFlag = arg( 9) 1475 1504 retval = 0 1476 1505 getsearch ThisSearch … … 1489 1518 if lrc then 1490 1519 retval = ASSIST_RC_NOT_ON_A_BALANCEABLE_TOKEN 1491 --#dprintf( 'passist', ' assist_search: rc = 'lrc)1520 --#dprintf( 'passist', 'AssistSearch: rc = 'lrc) 1492 1521 leave 1493 1522 endif 1494 1523 1495 1524 --#dprintf( "passist", "Match at ".line",".col) 1496 if inside_comment( mode) then1497 --#dprintf( 'passist', ' inside_comment')1525 if InsideComment( Mode) then 1526 --#dprintf( 'passist', 'InsideComment') 1498 1527 iterate 1499 1528 endif 1500 if inside_literal( mode) then1501 --#dprintf( 'passist', ' inside_literal')1529 if InsideLiteral( Mode) then 1530 --#dprintf( 'passist', 'InsideLiteral') 1502 1531 iterate 1503 1532 endif 1504 1533 1505 if mode = 'E' & ECompileFlag <> 1 then1534 if Mode = 'E' & ECompileFlag <> 1 then 1506 1535 -- if|endif (without compile) 1507 1536 line = textline( .line) … … 1552 1581 enddo 1553 1582 1554 if retval = 0 and mode == 'TEX' and (clist = 'be' or clist = 'en') then1583 if retval = 0 and Mode == 'TEX' and (clist = 'be' or clist = 'en') then 1555 1584 call psave_pos( texsavepos) 1556 1585 if clist = 'be' then … … 1559 1588 .col = .col + 5 1560 1589 endif 1561 nextchar = next_nonblank_noncomment_nonliteral( mode)1590 nextchar = NextCodeChar( Mode) 1562 1591 --#dprintf( "passist", "TEX env: "tex_env" NextChar: "nextchar) 1563 1592 if tex_env <> '' then … … 1582 1611 1583 1612 ; --------------------------------------------------------------------------- 1584 ; inside_nocomment_literal: determine if the cursor is within a literal. 1585 ; This routine first determines if the cursor is within a comment (since 1586 ; literals within comments are not "real" literals). 1587 ; Return values: 1588 ; 0: the cursor is NOT within a literal. 1589 ; other: the cursor IS within a literal. 1590 ; --------------------------------------------------------------------------- 1591 defproc inside_nocomment_literal( mode) 1613 ; Determines if the cursor is within a literal. 1614 ; This routine first determines if the cursor is within a comment (since 1615 ; literals within comments are not "real" literals). 1616 ; Return values: 1617 ; 0: the cursor is NOT within a literal (may be within a comment). 1618 ; other: the cursor IS within a literal. 1619 defproc InsideNonCommentLiteral( Mode) 1592 1620 CurLine = arg( 2) 1593 1621 if CurLine = '' then … … 1599 1627 endif 1600 1628 do once = 1 to 1 1601 rc = inside_comment( mode, CurLine, CurCol)1629 rc = InsideComment( Mode, CurLine, CurCol) 1602 1630 if rc = 0 then 1603 1631 leave 1604 1632 endif 1605 rc = inside_literal( mode, CurLine, CurCol)1633 rc = InsideLiteral( Mode, CurLine, CurCol) 1606 1634 enddo 1607 1635 return rc 1608 1636 1609 1637 ; --------------------------------------------------------------------------- 1610 ; inside_comment_literal: determine if the cursor is within a comment or 1611 ; within a literal. 1612 ; Return values: 1613 ; 0: the cursor is NOT within a comment NOR within a literal. 1614 ; other: the cursor IS within a comment or within a literal. 1615 ; --------------------------------------------------------------------------- 1616 defproc inside_comment_literal( mode) 1638 ; Determines if the cursor is within a comment or within a literal. 1639 ; Return values: 1640 ; 0: the cursor is NOT within a comment NOR within a literal. 1641 ; other: the cursor IS within a comment or within a literal. 1642 defproc InsideCommentLiteral( Mode) 1617 1643 CurLine = arg( 2) 1618 1644 if CurLine = '' then … … 1624 1650 endif 1625 1651 do once = 1 to 1 1626 rc = inside_comment( mode, CurLine, CurCol)1652 rc = InsideComment( Mode, CurLine, CurCol) 1627 1653 if rc <> 0 then 1628 1654 leave 1629 1655 endif 1630 rc = inside_literal( mode, CurLine, CurCol)1656 rc = InsideLiteral( Mode, CurLine, CurCol) 1631 1657 enddo 1632 1658 return rc 1633 1659 1634 1660 ; --------------------------------------------------------------------------- 1635 ; inside_literal: determine if the cursor is within a literal. Unlike 1636 ; inside_comment_literal, this routine does not first determine if the cursor 1637 ; is within a comment. This is called by inside_comment_literal and can be 1638 ; called directly if the test for the presence of a comment is unneeded. 1639 ; Return values: 1640 ; 0: the cursor is NOT within a literal. 1641 ; other: the cursor IS within a literal. 1642 ; --------------------------------------------------------------------------- 1643 defproc inside_literal( mode) 1661 ; Determines if the cursor is within a literal. Unlike InsideCommentLiteral, 1662 ; this routine does not first determine if the cursor is within a comment. 1663 ; This is called by InsideCommentLiteral and can be 1664 ; called directly if the test for the presence of a comment is unneeded. 1665 ; Return values: 1666 ; 0: the cursor is NOT within a literal. 1667 ; other: the cursor IS within a literal. 1668 defproc InsideLiteral( Mode) 1644 1669 CurLine = arg( 2) 1645 1670 if CurLine = '' then … … 1650 1675 CurCol = .col 1651 1676 endif 1652 --#dprintf( "lit2", "Entry: " .line .col)1677 --#dprintf( "lit2", "Entry: "CurLine CurCol) 1653 1678 call psave_pos( savepos2) 1654 1679 getsearch search_command2 -- Save caller's search command. 1655 line = textline( .line )1680 line = textline( CurLine ) 1656 1681 retval = 0 1657 1682 fexit = 0 1658 parse value GetLitChars( mode) with StartLitChars EndLitChars EscapeChars1683 parse value GetLitChars( Mode) with StartLitChars EndLitChars EscapeChars 1659 1684 if StartLitChars then 1660 1685 endpos = 0 … … 1662 1687 do forever 1663 1688 startpos = verify( line, StartLitChars, 'M', endpos + 1) -- find first start-of-literal 1664 --#dprintf( "lit2", "startpos curcol line: "startpos curcol line)1689 --#dprintf( "lit2", "startpos CurCol line: "startpos CurCol line) 1665 1690 if not startpos then -- if none, exit 1666 1691 leave 1667 elseif startpos >= curcol then -- if past cursor position, exit1692 elseif startpos >= CurCol then -- if past cursor position, exit 1668 1693 leave 1669 1694 endif … … 1677 1702 endpos = verify( line, endq''escapechar, 'M', endpos + 1) -- find next end-of-literal or escape char 1678 1703 --#dprintf( "lit2", "startq startpos endq endpos escapechar: "startq startpos endq endpos escapechar) 1679 if endpos >= curcol then -- JBSQ: Don't care if literal is properly closed?1704 if endpos >= CurCol then -- JBSQ: Don't care if literal is properly closed? 1680 1705 retval = 1 1681 1706 leave 1682 1707 elseif not endpos then -- No end "quote"?? 1683 --#dprintf( "lit2", "Unmatched start-of-literal character: "startq "at " curline","startpos)1708 --#dprintf( "lit2", "Unmatched start-of-literal character: "startq "at "CurLine","startpos) 1684 1709 --retval = 1 -- JBSQ: Return true on unmatched "quote"? 1685 1710 -- Better don't count the rest of the line as literal and leave retval = 0. … … 1692 1717 --#dprintf( "lit2", "Doubled-quote") 1693 1718 iterate 1694 else -- not escaped and endpos < curcol1719 else -- not escaped and endpos < CurCol 1695 1720 leave -- literal starts and ends before cursor col 1696 1721 endif … … 1704 1729 --#dprintf( "lit2", "Escaped char") 1705 1730 iterate 1706 else -- endpos > 0 and endpos < curcol, i.e. literal starts and ends before curcol1731 else -- endpos > 0 and endpos < CurCol, i.e. literal starts and ends before CurCol 1707 1732 leave 1708 1733 endif … … 1721 1746 1722 1747 ; --------------------------------------------------------------------------- 1723 ; GetLitChars: a routine which, given a mode, returns the start-of-literal, 1724 ; end-of-literal and escape characters for that mode. The return value 1725 ; is three "words". Each character of the first "word" is a start-of-literal 1726 ; character. The corresponding character in the second "word" is the 1727 ; corresponding end-of-literal character. The third "word is a list of the 1728 ; escape characters, if any, which allow a literal to include a start-of-literal, 1729 ; end-of-literal or itself in a literal. 1730 ; --------------------------------------------------------------------------- 1731 defproc GetLitChars( mode) 1748 ; A routine which, given a mode, returns the start-of-literal, end-of-literal 1749 ; and escape characters for that mode. 1750 ; The return value is three "words": 1751 ; o Each character of the first "word" is a start-of-literal character. 1752 ; o The corresponding character in the second "word" is the corresponding 1753 ; end-of-literal character. 1754 ; o The third "word" is a list of the escape characters, if any, which 1755 ; allow a literal to include a start-of-literal, end-of-literal or itself 1756 ; in a literal. 1757 defproc GetLitChars( Mode) 1732 1758 SingleQuote = "'" 1733 1759 DoubleQuote = '"' … … 1737 1763 if 0 then 1738 1764 -- placeholder 1739 elseif mode = 'E' then1765 elseif Mode = 'E' then 1740 1766 EscapeChars = StartLitChars 1741 elseif mode = 'REXX' then1767 elseif Mode = 'REXX' then 1742 1768 EscapeChars = StartLitChars 1743 elseif mode = 'MAKE' or mode = 'RC' or mode = 'WARPIN' then1769 elseif Mode = 'MAKE' or Mode = 'RC' or Mode = 'WARPIN' then 1744 1770 StartLitChars = DoubleQuote 1745 1771 EndLitChars = StartLitChars 1746 if mode = 'RC'then1772 if Mode = 'RC'then 1747 1773 EscapeChars = '\' 1748 1774 else 1749 1775 EscapeChars = \0 -- JBSQ: No escape chars for MAKE? 1750 1776 endif 1751 elseif mode = 'PERL' then1777 elseif Mode = 'PERL' then 1752 1778 StartLitChars = StartLitChars'`' 1753 1779 EndLitChars = StartLitChars 1754 1780 EscapeChars = '\\\' 1755 ; elseif mode = 'ADA' then -- JBSQ: ADA strings and chars are default: (" " and ' ')?1781 ; elseif Mode = 'ADA' then -- JBSQ: ADA strings and chars are default: (" " and ' ')? 1756 1782 ; StartLitChars = DoubleQuote'%' 1757 1783 ; EndLitChars = StartLitChars 1758 1784 ; EscapeChars = \0\0 -- JBSQ: Escape Chars? 1759 elseif wordpos( mode, 'DEF PASCAL FORTRAN77') > 0 then1785 elseif wordpos( Mode, 'DEF PASCAL FORTRAN77') > 0 then 1760 1786 StartLitChars = SingleQuote 1761 1787 EndLitChars = SingleQuote 1762 if mode = 'DEF' then1788 if Mode = 'DEF' then 1763 1789 EscapeChars = \0 1764 1790 else … … 1770 1796 1771 1797 ; --------------------------------------------------------------------------- 1772 ; InsideComment: a front-end call to InsideComment2. This is used when the 1773 ; location of the comment, returned by inside_comment2, is not needed. 1774 ; --------------------------------------------------------------------------- 1775 defproc inside_comment( mode) 1798 ; A front-end call to InsideComment2. This is used when the location of the 1799 ; comment, returned by InsideComment2, is not needed. 1800 defproc InsideComment( Mode) 1776 1801 CurLine = arg( 2) 1777 1802 if CurLine = '' then … … 1782 1807 CurCol = .col 1783 1808 endif 1784 return inside_comment2( mode, dummy, CurLine, CurCol)1809 return InsideComment2( Mode, dummy, CurLine, CurCol) 1785 1810 1786 1811 ; --------------------------------------------------------------------------- 1787 ; InsideComment2: determines if the cursor is located within a comment, 1788 ; multi-line or single-line. The input is the mode and a "var" variable 1789 ; (named "comment_data") in which the location of the comment is returned 1790 ; to the caller. 1791 ; 1792 ; return value 0 => cursor is NOT within a comment 1793 ; and comment_data is meaningless 1794 ; return value 1 => cursor IS within a one-line comment 1795 ; and comment_data is set to the column of the start of one-line comment 1796 ; return value 2 => cursor IS within a multi-line comment 1797 ; and comment_data is set to 6 blank-separated words: 1798 ; The line, col and length of the starting MLC token and 1799 ; the line, col and length of the ending MLC token. 1812 ; A front-end call to LocateMLC. This is used when the location of the 1813 ; comment, returned by LocateMLC, is not needed. 1814 defproc InsideMLC( Mode) 1815 CurLine = arg( 2) 1816 if CurLine = '' then 1817 CurLine = .line 1818 endif 1819 CurCol = arg( 3) 1820 if CurCol = '' then 1821 CurCol = .col 1822 endif 1823 retval = 0 1824 MLCData = LocateMLC( Mode, CurLine, CurCol) 1825 parse value MLCData with BestMLCStartLine BestMLCStartCol BestMLCStartLen BestMLCEndLine BestMLCEndCol BestMLCEndLen 1826 if BestMLCStartLine > 0 then 1827 retval = 1 1828 endif 1829 return retval 1830 1800 1831 ; --------------------------------------------------------------------------- 1801 defproc inside_comment2( mode, var comment_data) 1832 ; Determines if the cursor is located within a comment, multi-line or 1833 ; single-line. The input is the mode and a "var" variable 1834 ; (named "comment_data") in which the location of the comment is returned 1835 ; to the caller. 1836 ; Return value: 1837 ; 0: cursor is NOT within a comment 1838 ; and comment_data is meaningless 1839 ; 1: cursor IS within a one-line comment 1840 ; and comment_data is set to the column of the start of one-line 1841 ; comment 1842 ; 2: cursor IS within a multi-line comment 1843 ; and comment_data is set to 6 blank-separated words: 1844 ; o The line, col and length of the starting MLC token and 1845 ; o the line, col and length of the ending MLC token. 1846 defproc InsideComment2( Mode, var comment_data) 1802 1847 CurLine = arg( 3) 1803 1848 if CurLine = '' then … … 1814 1859 retval = 0 1815 1860 comment_data = "" 1816 line = textline( curline)1817 if QueryModeKey( mode, 'CaseSensitive', '1') then1861 line = textline( CurLine) 1862 if QueryModeKey( Mode, 'CaseSensitive', '1') then 1818 1863 MLCCase = 'e' -- case-sensitive (exact) 1819 1864 else 1820 1865 MLCCase = 'c' -- caseless 1821 1866 endif 1822 MLCData = locateMLC( mode, curline, curcol)1867 MLCData = LocateMLC( Mode, CurLine, CurCol) 1823 1868 parse value MLCData with BestMLCStartLine BestMLCStartCol BestMLCStartLen BestMLCEndLine BestMLCEndCol BestMLCEndLen 1824 1869 if BestMLCStartLine > 0 then … … 1827 1872 --#dprintf( "comm", "Retval on exit of outer MLC loop: "retval", cursor: ".line",".col) 1828 1873 if retval = 0 then 1829 SLCPosition = inside_oneline_comment( mode)1874 SLCPosition = InsideSLC( Mode, CurLine, CurCol) 1830 1875 comment_data = SLCPosition 1831 1876 retval = (SLCPosition > 0) … … 1840 1885 1841 1886 ; --------------------------------------------------------------------------- 1842 ; Determine if provided location (line, col) is within a multi-line comment1887 ; Determines if provided location (line, col) is within a multi-line comment 1843 1888 ; (MLC) for the provided mode. The return value is six space-separated 1844 1889 ; numbers representing: … … 1861 1906 ; just a part of a file. Also the amount of events that cause a rebuild of 1862 1907 ; the array could be reduced. 1863 defproc locateMLC( mode, line, col)1864 --dprintf( ' locateMLC( 'mode', 'line', 'col')')1908 defproc LocateMLC( Mode, line, col) 1909 --dprintf( 'LocateMLC( 'Mode', 'line', 'col')') 1865 1910 -- Build MLC array, return number of different MLC pairs (1 for C: /* ... */) 1866 ModeMLCCount = buildMLCArray( mode)1867 --#dprintf( "array", " locateMLC mode: "mode line","col "ModeMLCCount: "ModeMLCCount)1911 ModeMLCCount = buildMLCArray( Mode) 1912 --#dprintf( "array", "LocateMLC Mode: "Mode line","col "ModeMLCCount: "ModeMLCCount) 1868 1913 getfileid fid 1869 1914 listindexbase = fid'.assist.' … … 1883 1928 MLCListCount = 0 1884 1929 endif 1885 modeindexbase = 'assist.mode.' mode'.'1930 modeindexbase = 'assist.mode.'Mode'.' 1886 1931 MLCNest = GetAVar( modeindexbase''i'.MLCNest' ) 1887 1932 … … 2011 2056 2012 2057 ; --------------------------------------------------------------------------- 2013 ; buildMLCArray: Build an array containing the start and end points of all multi-line 2014 ; comments in the current file. 2015 ; --------------------------------------------------------------------------- 2016 defproc buildMLCArray( mode) 2058 ; Builds an array containing the start and end points of all multi-line 2059 ; comments in the current file. 2060 defproc buildMLCArray( Mode) 2017 2061 getfileid fid 2018 if QueryModeKey( mode, 'CaseSensitive', '1') then2062 if QueryModeKey( Mode, 'CaseSensitive', '1') then 2019 2063 MLCCase = 'e' -- case-sensitive (exact) 2020 2064 else 2021 2065 MLCCase = 'c' -- caseless 2022 2066 endif 2023 modeindexbase = 'assist.mode.' mode'.'2067 modeindexbase = 'assist.mode.'Mode'.' 2024 2068 listindexbase = fid'.assist.' 2025 2069 ModeMLCCount = GetAVar( modeindexbase'0') 2026 2070 2027 2071 if ModeMLCCount = '' then 2028 call GetMLCChars( mode, MLCStartChars, MLCEndChars, MLCNestList)2072 call GetMLCChars( Mode, MLCStartChars, MLCEndChars, MLCNestList) 2029 2073 ModeMLCCount = words( MLCStartChars) 2030 2074 call SetAVar( modeindexbase'0', ModeMLCCount) … … 2036 2080 endif 2037 2081 2038 --#dprintf( "array", "Build mode: " mode "MLCCount: "ModeMLCCount)2082 --#dprintf( "array", "Build mode: "Mode "MLCCount: "ModeMLCCount) 2039 2083 do once = 1 to 1 2040 2084 … … 2059 2103 2060 2104 call psave_pos( savepos) 2061 curline = .line2062 curcol = .col2063 2105 found_count = 0 2064 2106 do i = 1 to ModeMLCCount … … 2067 2109 MLCNest = GetAVar( modeindexbase''i'.MLCNest' ) 2068 2110 --#dprintf( "array", "MLC data: "MLCStart MLCEnd MLCNest) 2069 MLCStartSearch = escape_search_chars( MLCStart)2070 MLCEndSearch = escape_search_chars( MLCEnd)2111 MLCStartSearch = EscapeSearchChars( MLCStart) 2112 MLCEndSearch = EscapeSearchChars( MLCEnd) 2071 2113 --#dprintf( "array", ""MLCStart "search = "MLCStartSearch) 2072 2114 --#dprintf( "array", ""MLCEnd "search = "MLCEndSearch) 2073 MLCStartLine = curline2074 MLCStartCol = curcol + 12075 2115 MLCStartLen = length( MLCStart) 2076 MLCEndLine = curline2077 MLCEndCol = curcol2078 2116 MLCEndLen = length( MLCEnd) 2079 2117 .line = 1 … … 2103 2141 endif 2104 2142 2105 if inside_oneline_comment( mode) then2143 if InsideSLC( Mode) then 2106 2144 right 2107 2145 iterate 2108 2146 endif 2109 if inside_literal( mode) then2147 if InsideLiteral( Mode) then 2110 2148 right 2111 2149 iterate … … 2131 2169 2132 2170 --#dprintf( "comm", "MLCEnd, postsearch loc: ".line",".col) 2133 SLCPosition = inside_oneline_comment( mode, 1)2171 SLCPosition = InsideSLC( Mode, .line, .col, 1) 2134 2172 if SLCPosition then 2135 2173 right … … 2138 2176 2139 2177 -- JBSQ: MLCs "in-progress" can't be in literals? 2140 -- if inside_literal( mode) then2178 -- if InsideLiteral( Mode) then 2141 2179 -- iterate 2142 2180 -- endif … … 2177 2215 2178 2216 ; --------------------------------------------------------------------------- 2179 ; GetMLCChars: Return the tokens which start and end multi-line comments 2180 ; for the given mode. Also returned is whether the MLC can be nested 2181 ; within another MLC. These values are returned through three "var" 2182 ; parameters. Each "word" of each these parameters represents the 2183 ; start token, the end token and a flag indicating if theat MLC can 2184 ; be nested within another. 2217 ; Returns the tokens which start and end multi-line comments 2218 ; for the given mode. Also returned is whether the MLC can be nested 2219 ; within another MLC. These values are returned through three "var" 2220 ; parameters. Each "word" of each these parameters represents the 2221 ; start token, the end token and a flag indicating if theat MLC can 2222 ; be nested within another. 2223 defproc GetMLCChars( Mode, var MLCStartChars, var MLCEndChars, var MLCNestFLags) 2224 MLCStartChars = QueryModeKey( Mode, 'MultiLineCommentStart') 2225 if MLCStartChars <> '' then 2226 MLCEndChars = QueryModeKey( Mode, 'MultiLineCommentEnd') 2227 MLCNestFlags = QueryModeKey( Mode, 'MultiLineCommentNested', '0') 2228 endif 2229 return 2230 2185 2231 ; --------------------------------------------------------------------------- 2186 defproc GetMLCChars( mode, var MLCStartChars, var MLCEndChars, var MLCNestFLags) 2187 MLCStartChars = QueryModeKey( mode, 'MultiLineCommentStart') 2188 if MLCStartChars <> '' then 2189 MLCEndChars = QueryModeKey( mode, 'MultiLineCommentEnd') 2190 MLCNestFlags = QueryModeKey( mode, 'MultiLineCommentNested', '0') 2191 endif 2192 return 2193 2194 ; --------------------------------------------------------------------------- 2195 ; escape_search_chars: this routine takes a "search-for-this" search string 2196 ; and it inserts escape characters in front of any extended grep 2197 ; metacharacters. For example if the search string is "(abc)" (i.e. 2198 ; find "(abc)" the this routine returns "\(abc\)" because "(" and ")" 2199 ; are extended grep metacharacters and so they must be "escaped" with "\" 2200 ; --------------------------------------------------------------------------- 2201 defproc escape_search_chars( search_string) 2232 ; This routine takes a "search-for-this" search string and it inserts escape 2233 ; characters in front of any extended grep metacharacters. 2234 ; For example, if the search string is "(abc)" (i.e. find "(abc)"), this 2235 ; routine returns "\(abc\)" because "(" and ")" are extended grep 2236 ; metacharacters and so they must be "escaped" with "\". 2237 defproc EscapeSearchChars( search_string) 2202 2238 p = -1 2203 2239 do forever … … 2212 2248 2213 2249 ; --------------------------------------------------------------------------- 2214 ; inside_oneline_comment: determines if the cursor is located within a2215 ; single line comment. Returns the column of the start of the comment.2216 ; A value of 0 is returned if no one-line comment is found. An optional2217 ; second parameter is used to indicate that a MLC is "in-progress".2218 ; ---------------------------------------------------------------------------2219 defproc inside_oneline_comment( mode)2250 ; Determines if the cursor is located within a single-line comment. 2251 ; Returns the column of the start of the comment. A value of 0 is returned, 2252 ; if no one-line comment is found. 2253 ; An optional fourth parameter is used to indicate that a MLC is 2254 ; "in-progress". 2255 defproc InsideSLC( Mode) 2220 2256 CurLine = arg( 2) 2221 2257 if CurLine = '' then … … 2226 2262 CurCol = .col 2227 2263 endif 2264 MLCInProgress = arg( 4) 2265 if MLCInProgress = '' then 2266 MLCInProgress = 0 2267 endif 2268 2269 --#dprintf( "1line", "Entry: "CurLine CurCol "mode = "Mode) 2228 2270 line = textline( CurLine) 2229 --#dprintf( "1line", "Entry: "CurLine CurCol "Mode = "mode)2230 if arg(2) == '' then2231 MLCInProgress = 02232 else2233 MLCInProgress = arg(2)2234 endif2235 2271 retval = 0 2236 indexbase = 'assist.mode.' mode'.'2272 indexbase = 'assist.mode.'Mode'.' 2237 2273 2238 2274 SLCCount = GetAVar( indexbase'SLC.0') 2239 2275 if SLCCount = '' then 2240 call GetSLCChars( mode, SLCCharList, SLCPosList, SLCNeedList, SLCOverrideMLCList)2276 call GetSLCChars( Mode, SLCCharList, SLCPosList, SLCNeedList, SLCOverrideMLCList) 2241 2277 SLCCount = words( SLCCharList) 2242 2278 --#dprintf( "1line", "SLCCount: "SLCCount) … … 2297 2333 endif 2298 2334 CurCol = p 2299 if not inside_literal( mode) then2335 if not InsideLiteral( Mode) then 2300 2336 leave 2301 2337 endif … … 2335 2371 2336 2372 ; --------------------------------------------------------------------------- 2337 ; GetSLCChars: Returns the single-line comment data for the given mode 2338 ; For each possible SLC the following is returned: 2339 ; The token which initiates the SLC (SLCCharlist) 2340 ; A flag indicating any positional requirements (SLCPosList) 2341 ; 0: SLC can start anywhere on a line 2342 ; 1: SLC MUST start in column 1 2343 ; F: SLC must be the first non-blank on the line 2344 ; <negative_number> : SLC must NOT start in this column (-6 mean SLC must NOT 2345 ; start in column 6) 2346 ; A flag indicating if the token must be followed by a blank (SLCNeedList) 2347 ; 0: No (i.e. ANY character may follow the start token 2348 ; 1: A blank must follow the token 2349 ; A flag indicating if the SLC will "comment out" a closing MLC token (SLCOverrideMLCList) 2350 ; 0: No 2351 ; 1: Yes 2373 ; Returns the single-line comment data for the given mode. 2374 ; For each possible SLC the following is returned: 2375 ; o The token which initiates the SLC 2376 ; (SLCCharlist) 2377 ; o A flag indicating any positional requirements 2378 ; (SLCPosList) 2379 ; 0: SLC can start anywhere on a line 2380 ; 1: SLC MUST start in column 1 2381 ; F: SLC must be the first non-blank on the line 2382 ; <negative_number> : SLC must NOT start in this column 2383 ; (-6 means SLC must NOT start in column 6) 2384 ; o A flag indicating if the token must be followed by a blank 2385 ; (SLCNeedList) 2386 ; 0: No (i.e. ANY character may follow the start token 2387 ; 1: A blank must follow the token 2388 ; o A flag indicating if the SLC will "comment out" a closing MLC token 2389 ; (SLCOverrideMLCList) 2390 ; 0: No 2391 ; 1: Yes 2392 defproc GetSLCChars( Mode, var SLCCharList, var SLCPosList, var SLCNeedList, var SLCOverrideMLCList) 2393 SLCCharList = QueryModeKey( Mode, 'LineComment', '') 2394 if SLCCharList <> '' then 2395 SLCNeedList = QueryModeKey( Mode, 'LineCommentNeedSpace', '0') 2396 SLCPosList = QueryModeKey( Mode, 'LineCommentPos', '0') 2397 SLCOverrideMLCList = QueryModeKey( Mode, 'LineCommentOverrideMulti', '0') 2398 endif 2399 return 2400 2352 2401 ; --------------------------------------------------------------------------- 2353 defproc GetSLCChars( mode, var SLCCharList, var SLCPosList, var SLCNeedList, var SLCOverrideMLCList) 2354 SLCCharList = QueryModeKey( mode, 'LineComment', '') 2355 if SLCCharList <> '' then 2356 SLCNeedList = QueryModeKey( mode, 'LineCommentNeedSpace', '0') 2357 SLCPosList = QueryModeKey( mode, 'LineCommentPos', '0') 2358 SLCOverrideMLCList = QueryModeKey( mode, 'LineCommentOverrideMulti', '0') 2359 endif 2360 return 2361 2362 ; --------------------------------------------------------------------------- 2363 ; prune_assist_array: Clear the comment array 2364 ; --------------------------------------------------------------------------- 2365 defproc prune_assist_array() 2402 ; Clears the comment array. 2403 defproc PruneAssistArray() 2366 2404 getfileid fid 2367 2405 listindexbase = fid'.assist.' … … 2370 2408 2371 2409 ; --------------------------------------------------------------------------- 2372 ; next_nonblank_noncomment_nonliteral: repositions the cursor as the name 2373 ; of the routine describes. 2374 ; --------------------------------------------------------------------------- 2375 defproc next_nonblank_noncomment_nonliteral( mode) 2376 direction = arg(2) 2410 ; Repositions the cursor on the next non-blank, non-comment and non-literal 2411 ; character. 2412 defproc NextCodeChar( Mode) 2413 CurLine = arg( 2) 2414 if CurLine = '' then 2415 CurLine = .line 2416 endif 2417 CurCol = arg( 3) 2418 if CurCol = '' then 2419 CurCol = .col 2420 endif 2421 direction = arg( 4) 2377 2422 if direction = '' or not wordpos( direction, '+F -R') then 2378 2423 direction = '+F' 2379 2424 endif 2425 .line = CurLine 2426 .col = CurCol 2380 2427 getsearch savesearch 2381 2428 setsearch 'xcom l /[^ \t]+/x'direction -- find the next non-blank … … 2383 2430 repeatfind 2384 2431 if not rc then 2385 comment_rc = inside_comment2( mode, comment_data)2432 comment_rc = InsideComment2( Mode, comment_data) 2386 2433 --dprintf( "passist", "next pos: ".line",".col "Char: '"substr( textline( .line), .col, 1)'"' "comment_rc: "comment_rc) 2387 2434 if not comment_rc then … … 2414 2461 2415 2462 ; --------------------------------------------------------------------------- 2416 ; fortran77_extract_text: In FORTRAN the text of interest to passist is 2417 ; located only in columns 7 ... 72. (An exception is when FORTRAN90-style 2418 ; SLCs are supported.) This routine extracts and returns the text of 2419 ; interest to the passist routine. 2420 ; --------------------------------------------------------------------------- 2421 defproc fortran77_extract_text( linenum) 2463 ; In FORTRAN the text of interest to passist is located only in columns 2464 ; 7 ... 72. (An exception is when FORTRAN90-style SLCs are supported.) 2465 ; This routine extracts and returns the text of interest to the passist 2466 ; routine. 2467 defproc Fortran77ExtractText( linenum) 2422 2468 text = substr( textline( linenum), 7, 66) -- columns 7 ... 72 2423 2469 compile if 0 /* USE_FORTRAN90_SLC = 1 */ … … 2427 2473 .col = 7 2428 2474 setsearch 'xcom l /!/xe+F' 2429 mode = 'FORTRAN90'2475 Mode = 'FORTRAN90' 2430 2476 clist = '!' 2431 2477 case = 'e' -- 'e' = case-sensitive … … 2433 2479 clen = 1 2434 2480 nestlevel = -1 -- -1 = stop on first 'hit' 2435 fortran90_rc = assist_search( mode, clist, case, coffset, clen, nestlevel)2481 fortran90_rc = AssistSearch( Mode, clist, case, coffset, clen, nestlevel) 2436 2482 if not rc then 2437 2483 if .line = linenum and .col > 6 then … … 2449 2495 2450 2496 ; --------------------------------------------------------------------------- 2451 ; fortran77_remove_spaces: In FORTRAN spaces which are not located within a 2452 ; literal are irrelevant. This routine removes these insignificant spaces, 2453 ; if any. 2454 ; --------------------------------------------------------------------------- 2455 defproc fortran77_remove_spaces( text) 2456 if pos( ' ', text) then 2497 ; In FORTRAN, spaces, which are not located within a literal, are irrelevant. 2498 ; This routine removes these insignificant spaces, if any. 2499 defproc Fortran77RemoveSpaces( text) 2500 do once = 1 to 1 2501 if not pos( ' ', text) then 2502 leave 2503 endif 2504 2457 2505 getfileid fid 2458 'e .temp_fortran' 2506 2507 'xcom e .temp_fortran' 2459 2508 insertline text 2460 2509 p = 0 … … 2465 2514 if p then 2466 2515 .col = p 2467 if not inside_literal( 'FORTRAN77') then2516 if not InsideLiteral( 'FORTRAN77') then 2468 2517 delete_char 2469 2518 p = 0 … … 2476 2525 getline text 2477 2526 .modify = 0 2478 'quit' 2527 'xcom quit' 2528 2479 2529 activatefile fid 2480 endif 2530 2531 enddo 2481 2532 return text 2482 2533 2483 2534 ; --------------------------------------------------------------------------- 2484 ; t8: Dynamically set the array variable 'debuglist' which is used by 2485 ; the dprintf proc. 2486 ; --------------------------------------------------------------------------- 2535 ; Dynamically set the array variable 'debuglist', which is used by 2536 ; the dprintf proc. 2487 2537 /* 2488 2538 defc t8 2489 2539 -- AddAVar( 'debuglist', str) 2490 SetAVar( 'debuglist', arg( 1))2540 SetAVar( 'debuglist', arg( 1)) 2491 2541 2492 2542 defc t10 2493 2543 list = GetAVar( 'debuglist') 2494 sayerror 'debuglist (b4): 'list2495 2496 defc insidecomment2544 'SayHint debuglist: 'list 2545 2546 defc InsideComment, IC 2497 2547 CurMode = GetMode() 2498 if inside_comment( CurMode) then 2499 sayerror 'Inside a comment' 2500 elseif inside_literal( CurMode) then 2501 sayerror 'Inside a literal' 2548 parse arg CurLine CurCol . 2549 if CurLine = '' then 2550 CurLine = .line 2551 endif 2552 if CurCol = '' then 2553 CurCol = .col 2554 endif 2555 if InsideComment( CurMode, CurLine, CurCol) then 2556 'SayHint Inside a comment' 2557 elseif InsideLiteral( CurMode, CurLine, CurCol) then 2558 'SayHint Inside a literal' 2502 2559 else 2503 sayerror 'Not inside a comment or literal'2504 endif 2505 2506 defc insideliteral2560 'SayHint Not inside a comment or literal' 2561 endif 2562 2563 defc InsideLiteral, IL 2507 2564 CurMode = GetMode() 2508 if inside_literal( CurMode) then 2509 sayerror 'Inside a literal' 2565 parse arg CurLine CurCol . 2566 if CurLine = '' then 2567 CurLine = .line 2568 endif 2569 if CurCol = '' then 2570 CurCol = .col 2571 endif 2572 if InsideLiteral( CurMode, CurLine, CurCol) then 2573 'SayHint Inside a literal' 2510 2574 else 2511 sayerror 'Not inside a literal' 2512 endif 2575 'SayHint Not inside a literal' 2576 endif 2577 2578 defc InsideSingleLineComment, ISLC 2579 CurMode = GetMode() 2580 parse arg CurLine CurCol . 2581 if CurLine = '' then 2582 CurLine = .line 2583 endif 2584 if CurCol = '' then 2585 CurCol = .col 2586 endif 2587 if InsideSLC( CurMode, CurLine, CurCol) then 2588 'SayHint Inside a single-line comment' 2589 else 2590 'SayHint Not inside a single-line comment' 2591 endif 2592 2593 defc InsideMultuLineComment, IMLC 2594 CurMode = GetMode() 2595 parse arg CurLine CurCol . 2596 if CurLine = '' then 2597 CurLine = .line 2598 endif 2599 if CurCol = '' then 2600 CurCol = .col 2601 endif 2602 if InsideMLC( CurMode, CurLine, CurCol) then 2603 'SayHint Inside a multi-line comment' 2604 else 2605 'SayHint Not inside a multi-line comment' 2606 endif 2607 2608 defc NextCodeChar 2609 CurMode = GetMode() 2610 parse arg CurLine CurCol Direction . 2611 call NextCodeChar( CurMode, CurLine, CurCol, Direction) 2513 2612 */ 2514 2613 -
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r3251 r3257 1061 1061 -- Invalidate array of multi-line comment positions, used by passist() 1062 1062 if not IsSingleKey( lastkey()) & curkey <> prevkey then 1063 if IsADefProc( ' prune_assist_array') then1064 call prune_assist_array()1063 if IsADefProc( 'PruneAssistArray') then 1064 call PruneAssistArray() 1065 1065 endif 1066 1066 endif -
TabularUnified trunk/src/netlabs/macros/tags.e ¶
r3171 r3257 181 181 if .col > 1 then 182 182 if pos( upcase( substr( line, .col - 1, 1)), IDENTIFIER_STARTER'0123456789') then 183 end _line183 endline 184 184 iterate 185 185 endif … … 187 187 .col = .col + ProcLen 188 188 if pos( upcase( substr( line, .col, 1)), IDENTIFIER_STARTER'0123456789') then 189 end _line189 endline 190 190 iterate 191 191 endif 192 192 193 193 -- Use assist code for comment and literal determination 194 if inside_comment_literal( 'C') then194 if InsideCommentLiteral( 'C') then 195 195 --dprintf( 'Inside comment or literal, iterate') 196 end _line196 endline 197 197 iterate 198 198 endif … … 228 228 229 229 -- Use assist code for comment and literal determination 230 if inside_comment_literal( 'C') then230 if InsideCommentLiteral( 'C') then 231 231 --dprintf( 'Inside comment or literal, iterate') 232 232 .line = CloseBraceLine 233 end _line233 endline 234 234 iterate 235 235 endif … … 242 242 if rcx <> 0 then 243 243 .line = CloseBraceLine 244 end _line244 endline 245 245 iterate 246 246 endif … … 248 248 249 249 -- Previous char must be a closing branch 250 ch = next_nonblank_noncomment_nonliteral( 'C', '-R')250 ch = NextCodeChar( 'C', .line, .col, '-R') 251 251 --dprintf( ') CloseBranch: line =' .line', col = '.col', ch = 'ch) 252 252 -- If not ')' then find next closing brace in col 1. 253 253 if ch <> ')' then 254 254 .line = CloseBraceLine 255 end _line255 endline 256 256 iterate 257 257 endif … … 262 262 if rcx <> 0 then 263 263 .line = CloseBraceLine 264 end _line264 endline 265 265 iterate 266 266 endif … … 268 268 269 269 -- Previous char must be the end of ProcName 270 ch = next_nonblank_noncomment_nonliteral( 'C', '-R')270 ch = NextCodeChar( 'C', .line, .col, '-R') 271 271 if ch = '' then 272 272 .line = CloseBraceLine 273 end _line273 endline 274 274 iterate 275 275 endif … … 282 282 if rc then 283 283 .line = CloseBraceLine 284 end _line284 endline 285 285 iterate 286 286 endif … … 298 298 ProcName = '' 299 299 .line = CloseBraceLine 300 end _line300 endline 301 301 iterate 302 302 endif … … 349 349 endif 350 350 351 if inside_comment_literal( 'PASCAL') then351 if InsideCommentLiteral( 'PASCAL') then 352 352 repeat_find 353 353 iterate … … 362 362 c = upcase( substr( line, .col - 1, 1)) 363 363 if (c >= 'A' & c <= 'Z') | (c >= '0' & c <= '9') | c = '$' | c = '_' then 364 --end _line364 --endline 365 365 repeat_find 366 366 iterate … … 370 370 c = upcase( substr( line, .col, 1)) 371 371 if (c >= 'A' & c <= 'Z') | (c >= '0' & c <= '9') | c = '$' | c = '_' then 372 --end _line372 --endline 373 373 repeat_find 374 374 iterate … … 385 385 endif 386 386 if not p then 387 --end _line387 --endline 388 388 repeat_find 389 389 iterate … … 396 396 call psave_pos( save_pos) 397 397 if find_matching_paren() then 398 --end _line398 --endline 399 399 repeat_find 400 400 iterate … … 404 404 405 405 if pos( 'forward;', textline( .line)) then 406 --end _line406 --endline 407 407 repeat_find 408 408 iterate … … 415 415 --return 0 416 416 endif 417 --end _line417 --endline 418 418 --repeat_find 419 419 … … 449 449 endif 450 450 451 if inside_comment_literal( 'ASSEMBLER') then451 if InsideCommentLiteral( 'ASSEMBLER') then 452 452 repeat_find 453 453 iterate … … 483 483 endif 484 484 485 if inside_comment_literal( 'CMD') then485 if InsideCommentLiteral( 'CMD') then 486 486 repeat_find 487 487 iterate … … 516 516 endif 517 517 518 if inside_comment_literal( 'HTEXT') then518 if InsideCommentLiteral( 'HTEXT') then 519 519 repeat_find 520 520 iterate … … 559 559 endif 560 560 561 if inside_comment_literal( 'IPF') then561 if InsideCommentLiteral( 'IPF') then 562 562 repeat_find 563 563 iterate … … 629 629 if fFindProcName then 630 630 if length( ProcName) <> ProcLen then -- a substring of something else 631 --end _line631 --endline 632 632 repeat_find 633 633 iterate … … 635 635 endif 636 636 637 if inside_comment_literal( 'JAVASCRIPT') then637 if InsideCommentLiteral( 'JAVASCRIPT') then 638 638 repeat_find 639 639 iterate … … 672 672 if fFindProcName then 673 673 if length( ProcName) <> ProcLen then -- a substring of something else 674 end _line674 endline 675 675 repeat_find 676 676 iterate … … 678 678 endif 679 679 680 if inside_comment_literal( 'PYTHON') then680 if InsideCommentLiteral( 'PYTHON') then 681 681 repeat_find 682 682 iterate … … 739 739 Len = GetPmInfo( EPMINFO_LSLENGTH) 740 740 741 if inside_comment_literal( 'E') then741 if InsideCommentLiteral( 'E') then 742 742 repeat_find 743 743 iterate … … 781 781 Next = strip( Next) 782 782 NextLen = length( Next) 783 -- Move to Next for inside_comment_literal check783 -- Move to Next for InsideCommentLiteral check 784 784 .col = .col + NextLen - 1 + pos( Next, RestLine) 785 if inside_comment_literal( 'E') then785 if InsideCommentLiteral( 'E') then 786 786 iterate 787 787 endif … … 819 819 endif 820 820 821 if inside_comment_literal( 'REXX') then821 if InsideCommentLiteral( 'REXX') then 822 822 repeat_find 823 823 iterate … … 870 870 endif 871 871 872 if inside_comment_literal( 'TEX') then872 if InsideCommentLiteral( 'TEX') then 873 873 repeat_find 874 874 iterate … … 882 882 c = upcase( substr( line, .col - 1, 1)) 883 883 if (c >= 'A' & c <= 'Z') | (c >= '0' & c <= '9') | c = '$' | c = '_' then 884 --end _line884 --endline 885 885 repeat_find 886 886 iterate … … 890 890 c = upcase( substr( line, .col, 1)) 891 891 if (c >= 'A' & c <= 'Z') | (c >= '0' & c <= '9') | c = '$' | c = '_' then 892 --end _line892 --endline 893 893 repeat_find 894 894 iterate … … 901 901 col = .col 902 902 if not pos( Keywords, line, 1, 'x') then 903 --end _line903 --endline 904 904 repeat_find 905 905 iterate … … 932 932 --return 0 933 933 endif 934 --end _line934 --endline 935 935 --repeat_find 936 936 … … 1363 1363 .col = 1 1364 1364 call proc_search( ProcName, 1, Mode, Ext) 1365 --call prune_assist_array()1366 1365 return 1367 1366 endif … … 1372 1371 'SayHint Searching for routine.' 1373 1372 searchrc = proc_search( ProcName, 1, Mode, FType) 1374 --call prune_assist_array()1375 1373 --dprintf( 'Using proc_search for 'ProcName', filename = '.filename) 1376 1374 if searchrc then … … 1583 1581 i = i + 1 1584 1582 insertline ProcName '('.line')', lb_fid.last + 1, lb_fid 1585 end _line1583 endline 1586 1584 1587 1585 -- Store item number for cursor pos … … 1591 1589 enddo 1592 1590 1593 --call prune_assist_array()1594 1591 call prestore_pos( savepos) 1595 1592 if browse_mode then -
TabularUnified trunk/src/netlabs/macros/undo.e ¶
r3223 r3257 284 284 285 285 -- Invalidate array of multi-line comment positions, used by passist() 286 if IsADefProc( ' prune_assist_array') then287 call prune_assist_array()286 if IsADefProc( 'PruneAssistArray') then 287 call PruneAssistArray() 288 288 endif 289 289 'MatchFindOnMove' … … 337 337 338 338 -- Invalidate array of multi-line comment positions, used by passist() 339 if IsADefProc( ' prune_assist_array') then340 call prune_assist_array()339 if IsADefProc( 'PruneAssistArray') then 340 call PruneAssistArray() 341 341 endif 342 342 'MatchFindOnMove' … … 345 345 ; The following code defines key commands that let you step backwards 346 346 ; and forwards through the undo states. 347 ;348 347 ; With the switch to accel keys, a new undo state is only created for 349 348 ; commands different from Undo1 or Redo1. 350 351 ; ---------------------------------------------------------------------------352 349 defc Undo1 353 350 universal current_undo_state
Note:
See TracChangeset
for help on using the changeset viewer.