Changeset 4251
- Timestamp:
- Oct 28, 2020, 12:46:14 PM (4 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/edit.e ¶
r4248 r4251 708 708 defc Edit, e, ed 709 709 universal default_edit_options 710 universal firstloadedfid -- first file for this edit cmd, set here711 universal firstinringfid -- first file in the ring, set by defmain712 -- Both values are set by defmain, if only713 -- the unknown file was loaded (via xcom edit).714 710 universal mainstate 715 711 universal loadstate … … 994 990 if firstfid <> '' then 995 991 -- Set fid for ProcessFilesLoaded 996 firstloadedfid = firstfid 997 998 -- Initialize firstinringfid if not already set by a previous Edit command 999 if firstinringfid = '' then 1000 firstinringfid = firstloadedfid 1001 endif 992 call InitFirstFid( firstfid) 1002 993 endif 1003 994 … … 1094 1085 defc OpenPath, OPath, op 1095 1086 "Open 'ep "arg( 1)"'" 1087 1088 ; --------------------------------------------------------------------------- 1089 defc NewUntitledFile 1090 'xcom e /n' 1091 if rc = -282 then -- sayerror 'New file' 1092 getfileid newfid 1093 call InitFirstFid( newfid) 1094 endif 1096 1095 1097 1096 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/epmshell.e ¶
r3957 r4251 202 202 ; buffer is created. 203 203 ; 204 ; Syntax: shell [new] [<command>]204 ; Syntax: Shell [new] [<command>] 205 205 ; 206 206 ; shell_index is the number of the last created shell, <shellnum>. … … 211 211 universal shell_index 212 212 universal ring_enabled 213 universal ShellStartFid213 universal shellstartfid 214 214 215 215 if not ring_enabled then … … 242 242 fShellStartFidInRing = 0 243 243 -- Need to check if not empty 244 if ShellStartFid <> '' then245 if validatefileid( ShellStartFid) then244 if shellstartfid <> '' then 245 if validatefileid( shellstartfid) then 246 246 fShellStartFidInRing = 1 247 247 endif … … 256 256 if ShellNum > shell_index then 257 257 if fShellStartFidInRing then 258 ShellFid = ShellStartFid258 ShellFid = shellstartfid 259 259 else 260 260 -- if only 1 buffer in the ring, create a new one … … 299 299 300 300 else 301 ShellStartFid = CurFid301 shellstartfid = CurFid 302 302 if fSwitch then 303 303 -- Find first shell buffer, handle already closed shells … … 359 359 endif 360 360 getfileid ShellFid 361 -- Set firstloadedfid for ProcessPostFilesLoaded 362 call InitFirstFid( ShellFid) 361 363 .filename = '.command_shell_'ShellNum 362 364 if not IsABackupFileName() then … … 380 382 endif 381 383 endif 382 --dprintf( ' shellhandle = 0x'ltoa( ShellHandle, 16)', newObject.retval = 'retval)384 --dprintf( 'ShellHandle = 0x'ltoa( ShellHandle, 16)', newObject.retval = 'retval) 383 385 else 384 386 activatefile ShellFid … … 485 487 ; If <text> is missing, the 'Write to shell' EntryBox opens. 486 488 defc ShellWrite, Shell_Write 487 universal ShellHandle488 universal Shell_lastwrite 489 universal shelllastwrite 490 489 491 parse arg ShellNum Text 490 492 --dprintf( 'ShellWrite: ShellNum Text = 'ShellNum Text) … … 515 517 '/'OK__MSG'/'Cancel__MSG'/', -- Buttons 516 518 compile endif 517 Shell_lastwrite,-- entrytext519 shelllastwrite, -- entrytext 518 520 '', 254, -- cols, maxchars 519 521 atoi( 1) || atoi( 0000) || GethWndC( APP_HANDLE) || … … 571 573 call buffer( FREEBUF, bufhndl) 572 574 if button = \2 then -- 'Edit' selected 573 Shell_lastwrite = Text575 shelllastwrite = Text 574 576 iterate 575 577 endif … … 581 583 endif -- text = '' 582 584 if Text <> '' then 583 Shell_lastwrite = Text585 shelllastwrite = Text 584 586 endif 585 587 writebuf = Text\13\10 … … 1070 1072 activatefile IniFid 1071 1073 .modify = 0 1072 ' Quit'1074 'xcom quit' 1073 1075 1074 1076 -- Sort temp file to allow for finding the longest matched key … … 1798 1800 1799 1801 defc ShellHistory, Shell_History 1800 universal Shell_lastwrite1802 universal shelllastwrite 1801 1803 1802 1804 parse arg ShellNum Text … … 1813 1815 1814 1816 if ShellHandle <> '' then 1815 if Text <> '' then Shell_lastwrite = Text; endif 1817 if Text <> '' then 1818 shelllastwrite = Text 1819 endif 1816 1820 1817 1821 shell_title = strip( WRITE_SHELL_MENU__MSG, 'T', '.') -- '~Write to shell...' … … 1873 1877 call buffer( FREEBUF, bufhndl) 1874 1878 if Button = \2 then -- 'Edit' selected 1875 Shell_lastwrite = Text1879 shelllastwrite = Text 1876 1880 parse value EntryBox( shell_title, -- Title, 1877 1881 compile if EPM_SHELL_PROMPT = '@prompt epm: $p $g' | EPM_SHELL_PROMPT = '@prompt [epm: $p ]' … … 1880 1884 '/'OK__MSG'/'Cancel__MSG'/', -- Buttons 1881 1885 compile endif 1882 Shell_lastwrite,-- Entrytext1886 shelllastwrite, -- Entrytext 1883 1887 '', 254, -- cols, maxchars 1884 1888 atoi( 1) || atoi( 0000) || GethWndC( APP_HANDLE) || … … 1910 1914 1911 1915 defc ShellInput, Shell_Input 1912 universal Shell_lastwrite1916 universal shelllastwrite 1913 1917 parse arg Text 1914 1918 ShellNum = '' … … 1926 1930 if ShellHandle <> '' then 1927 1931 if Text <> '' then 1928 Shell_lastwrite = Text1932 shelllastwrite = Text 1929 1933 endif 1930 1934 writebuf = Text\13\10 -- input text + CRLF -
TabularUnified trunk/src/netlabs/macros/groups.e ¶
r4062 r4251 361 361 subword( ThisFile, 2) -- execute the command 362 362 elseif ThisFile = GetUnnamedFilename() then 363 ' xcom e /n'363 'NewUntitledFile' 364 364 else 365 ' e/np 'EnquoteFilespec( ThisFile)'"' -- /np = no pos restore from EA365 'Edit /np 'EnquoteFilespec( ThisFile)'"' -- /np = no pos restore from EA 366 366 endif 367 367 if not rc | rc = sayerror( 'Lines truncated') then -
TabularUnified trunk/src/netlabs/macros/main.e ¶
r4112 r4251 189 189 defc ProcessPostMain 190 190 universal nepmd_hini 191 universal firstinringfid192 universal firstloadedfid193 191 194 192 getfileid unnamedfid … … 267 265 -- universal vars to make ProcessFilesLoaded happy. 268 266 -- Usually they are set by defc edit. 269 firstloadedfid = newfid -- first file for this edit cmd 270 firstinringfid = newfid -- first file in the ring 267 call InitFirstFid( newfid) 271 268 dprintf( 'MAIN_EMPTY_FILE', 'now filesinring = 'filesinring()) 272 269 endif -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r4243 r4251 257 257 DefMenuItem( '', -- New 258 258 'N~ew', 259 ' xcom e /n',259 'NewUntitledFile', 260 260 'Create a new, empty file in this window', 261 261 HP_FILE_EDIT) -
TabularUnified trunk/src/netlabs/macros/select.e ¶
r4193 r4251 130 130 131 131 ; --------------------------------------------------------------------------- 132 defproc InitFirstFid( fid) 133 universal firstloadedfid 134 universal firstinringfid 135 136 -- Set firstloadedfid for ProcessPostFilesLoaded. It will be reset after 137 -- processing. 138 if firstloadedfid = '' then 139 firstloadedfid = ShellFid 140 -- Set firstinringfid if unset 141 if firstinringfid = '' then 142 firstinringfid = firstloadedfid 143 endif 144 endif 145 146 return 147 148 ; --------------------------------------------------------------------------- 132 149 ; This cmd is posted once by defselect after all files are loaded. 133 150 defc ProcessPostFilesLoaded … … 140 157 if IsNum( firstloadedfid) then 141 158 call pActivateFile( firstloadedfid) 142 elseif IsNum( lastselectedfid) then143 -- This should work for virtual files144 call pActivateFile( lastselectedfid)145 159 endif 146 160 firstloadedfid = '' -
TabularUnified trunk/src/netlabs/macros/showattr.e ¶
r3882 r4251 157 157 attrib_fid.titletext = 'Attribute summary for' start_fid.filename 158 158 attrib_fid.modify = 0 159 call InitFirstFid( attrib_fid) 159 160 'postme monofont' 160 161 else -
TabularUnified trunk/src/netlabs/macros/tree.e ¶
r4063 r4251 182 182 endif 183 183 getfileid treefid 184 call InitFirstFid( treefid) 184 185 185 186 'xcom e /c .dirs' … … 265 266 return rc 266 267 endif 267 268 268 getfileid treefid 269 call InitFirstFid( treefid) 270 269 271 FileCount = 0 270 272 TotalSize = 0
Note:
See TracChangeset
for help on using the changeset viewer.