Changeset 4066
- Timestamp:
- Jun 16, 2020, 12:26:05 PM (5 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/edit.e ¶
r4065 r4066 660 660 -- Both values are set by defmain, if only 661 661 -- the unknown file was loaded (via xcom edit). 662 universal lastselectedfid663 664 662 edit_rc = '' 665 -- Reset lastselectedfid to avoid suppression of next ProcessSelect666 lastselectedfid = ''667 663 668 664 do once = 1 to 1 … … 709 705 710 706 NumErrors = 0 711 FirstFid = ''707 firstfid = '' 712 708 713 709 fParseCmd = 1 … … 919 915 NumErrors = NumErrors + 1 920 916 else 921 if FirstFid = '' then922 -- If rc = 0, then set FirstFid:923 getfileid FirstFid917 if firstfid = '' then 918 -- If rc = 0, then set firstfid: 919 getfileid firstfid 924 920 endif 925 921 endif … … 932 928 if FileSpec = '' & Cmd = '' & pos( '/n', lowcase( Options)) then 933 929 call LoadFile( FileSpec, Options) 930 edit_rc = rc 931 if not edit_rc then 932 getfileid firstfid 933 endif 934 934 endif 935 935 936 936 if NumErrors > 1 then 937 937 MessageNWait( MULTIPLE_ERRORS__MSG) 938 endif 939 940 dprintf( 'EDIT', 'arg( 1) = ['arg( 1)'], FirstFid = ['FirstFid'], ['FirstFid.filename']') 938 stop 939 endif 940 941 dprintf( 'EDIT', 'arg( 1) = ['arg( 1)'], firstfid = ['firstfid'], ['firstfid.filename']') 941 942 -- If 1 or more files are loaded by the current Edit cmd 942 943 -- (or if loadfile has returned rc = 0) 943 if FirstFid <> '' then944 if firstfid <> '' then 944 945 -- Set fid for ProcessFilesLoaded 945 firstloadedfid = FirstFid946 firstloadedfid = firstfid 946 947 947 948 -- Initialize firstinringfid if not already set by a previous Edit command … … 1206 1207 .autosave = 0 1207 1208 .visible = 0 1208 first loadedfid = ''1209 firstnewfid = '' 1209 1210 1210 1211 -- Execute the lines … … 1229 1230 1230 1231 'Edit /np 'LineStr 1231 if first loadedfid = '' then1232 if firstnewfid = '' then 1232 1233 getfileid fid 1233 1234 if fid <> listfid then 1234 first loadedfid = fid1235 firstnewfid = fid 1235 1236 endif 1236 1237 endif … … 1240 1241 -- This makes other commands in the FileList need only one PostMe 1241 1242 -- to be applied on this file. 1242 if first loadedfid <> '' then1243 if validatefileid( first loadedfid) then1244 activatefile first loadedfid1243 if firstnewfid <> '' then 1244 if validatefileid( firstnewfid) then 1245 activatefile firstnewfid 1245 1246 endif 1246 1247 endif … … 1248 1249 -- Note: File loading takes some time. Therefore many commands 1249 1250 -- won't give reliable results at this time. PostMe helps. 1250 'PostMe CloseHiddenFile' listfid first loadedfid -- PostMe required1251 'PostMe CloseHiddenFile' listfid firstnewfid -- PostMe required 1251 1252 enddo 1252 1253 -
TabularUnified trunk/src/netlabs/macros/infoline.e ¶
r3880 r4066 519 519 universal lastselectedfid 520 520 universal infolinerefresh -- Disable refresh of infolines if = 0 521 ; universal modifydisabled -- Disable processing of defmodify code, if 522 -- checked 521 523 522 do once = 1 to 1 524 --if modifydisabled = 1 then525 -- leave526 --endif527 523 getfileid fid 528 -- Don't process the following on file switching (cases 4) and 5))524 -- Don't process the following on file switching 529 525 if fid <> lastselectedfid then 530 526 leave 531 endif532 if lastselectedfid = '' then533 leave534 endif535 536 -- Init universal var if this is the first selected file537 if lastselectedfid = '' then538 lastselectedfid = fid539 527 endif 540 528 … … 556 544 'SetStatusLine' -- update color of statusline 557 545 endif 558 559 -- Commented out, because: The following would disable resetting the modify560 -- state for tmp files, like .NEPMD_INFO. .modify is reset, but both the561 -- title bar and the status bar color show the modified state.562 -- ModifyDisabled = 1 -- Disable defmodify immediately563 --'postme EnableModify' -- Reenable defmodify delayed564 546 enddo 565 566 547 567 548 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/select.e ¶
r4065 r4066 66 66 endif 67 67 68 -- Suppress too early select event s68 -- Suppress too early select event for the automaticallay loaded file 69 69 if loadstate = '' then 70 70 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (initial file)') … … 75 75 76 76 if fid = lastselectedfid then 77 -- nop, ProcessSelect 2was already executed for this file77 -- nop, ProcessSelect was already executed for this file 78 78 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (already processed)') 79 79 else
Note:
See TracChangeset
for help on using the changeset viewer.