Changeset 4999
- Timestamp:
- Apr 28, 2022, 12:14:24 AM (3 years ago)
- Location:
- trunk/src/netlabs
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/bin/defaults.cfg ¶
r4994 r4999 335 335 ; Shell 336 336 \NEPMD\User\Shell\PromptValue = 'epm: {$r}[$p]$s' 337 \NEPMD\User\Shell\Start\Quiet = 1338 337 \NEPMD\User\Shell\FilenameCompletion = 1 339 338 \NEPMD\User\Shell\Alias = 1 -
TabularUnified trunk/src/netlabs/macros/config.e ¶
r4984 r4999 2865 2865 call DeleteConfigTree( '\NEPMD\User\Search\LastChangeArgs') 2866 2866 call DeleteConfigTree( '\NEPMD\User\Search\AddSearchChangeOptions') 2867 call DeleteConfigTree( '\NEPMD\User\Shell\Start\Quiet') 2867 2868 call DeleteConfigTree( '\NEPMD\Var\Search\LastFindDefButton') 2868 2869 call DeleteConfigTree( '\NEPMD\Var\Search\LastSearchDialogOptions') -
TabularUnified trunk/src/netlabs/macros/epmshell.e ¶
r4994 r4999 844 844 845 845 ; --------------------------------------------------------------------------- 846 const 847 -- Maybe make that behavior configurable via menu? 848 compile if not defined( SHELL_SWITCH_BUFFERS) 849 SHELL_SWITCH_BUFFERS = 1 850 compile endif 851 846 ; Executes a passed command in next (current, next or new) shell. 847 ; Syntax: Shell [<command>] 848 defc Shell 849 do once = 1 to 1 850 851 parse arg Cmd 852 853 if IsAShell() then 854 -- Execute passed Cmd in current shell 855 if Cmd then 856 'ShellWriteCmd' Cmd 857 endif 858 else 859 -- Pass Cmd to next or new Shell 860 'ShellSwitchStart 'Cmd 861 endif 862 863 end 864 865 ; --------------------------------------------------------------------------- 852 866 ; Starts a new shell object or switches between shell buffers and a 853 867 ; (starting) non-shell buffer. If args were specified, then the last shell 854 ; is reused and the args are executed in that shell. If the optional keyword 855 ; "new" is specified as the first word of the args string, a new shell 856 ; buffer is created. 868 ; is reused and the args are executed in that shell. 869 ; Activates shell1 -> shell2 -> startfile -> shell 1 -> ... 857 870 ; 858 ; Syntax: Shell [new][<command>]871 ; Syntax: ShellSwitchStart [<command>] 859 872 ; 860 873 ; shell_index is the number of the last created shell, <shellnum>. 861 874 ; The array var 'Shell_f'<shellnum> holds the fileid, 862 875 ; 'Shell_h'<shellnum> the handle. 863 defc Shell 876 defc ShellSwitchStart 877 -- fSwitch activates shell1 -> shell2 -> startfile -> shell 1 -> ... 864 878 universal shell_index 865 879 universal ring_enabled … … 869 883 endif 870 884 871 --dprintf( 'Shell: Args = >'arg( 1)'<') 872 Args = strip( arg( 1)) 873 874 -- fSwitch activates shell1 -> shell2 -> startfile -> shell 1 -> ... 875 fSwitch = 0 876 if SHELL_SWITCH_BUFFERS = 1 then 877 fSwitch = 1 878 endif 879 880 fCreateNew = 0 881 wp = wordpos( 'NEW', upcase( Args)) 882 if wp = 1 then 883 fCreateNew = 1 884 Args = delword( Args, wp, 1) 885 endif 886 887 Cmd = strip( Args) 885 --dprintf( 'Shell: Cmd = >'arg( 1)'<') 886 Cmd = strip( arg( 1)) 888 887 889 888 fShellInRing = 0 … … 896 895 enddo 897 896 898 if fS witch & fShellInRing & not fCreateNewthen897 if fShellInRing then 899 898 'ShellSwitch 'Cmd 900 899 else … … 1061 1060 SetFileAVar( 'shellstartstate', 1) 1062 1061 1062 -- Current ignore level 1063 -- 0 cmd not ignored (normal cmd) or not found in array 1064 -- 1 cmd quiet (only the prompt is changed) 1065 -- 2 prompt after a quiet cmd (not set by a ShellWrite* cmd) 1066 -- 3 cmd hidden (no output at all) 1067 -- 4 prompt hidden and cmd quiet (used at ShellStart only) 1068 -- 5 next output line is the first after a quiet ShellStart 1063 1069 -- Init current ignore level 1064 SetFileAVar( 'shellcurrentignorelevel', 0)1070 SetFileAVar( 'shellcurrentignorelevel', 4) 1065 1071 1066 1072 -- Alias file … … 1077 1083 PromptValue = ShellGetConfiguredPromptValue() 1078 1084 PromptCmd = '@prompt 'PromptValue 1079 1080 KeyPath = '\NEPMD\User\Shell\Start\Quiet' 1081 fQuietStart = QueryConfigKey( KeyPath) 1082 if fQuietStart then 1083 'ShellWriteCmdQuiet' ShellNum PromptCmd 1084 else 1085 'ShellWriteCmd' ShellNum PromptCmd 1086 endif 1085 'ShellWriteCmd' ShellNum PromptCmd 1087 1086 1088 1087 if fRestored then … … 1106 1105 if ShellDir <> ShellDirRealCase then 1107 1106 CdCmd = 'cdd 'EnquoteFilespec( ShellDirRealCase) 1108 if fQuietStart then 1109 'ShellWriteCmdQuiet' ShellNum CdCmd 1110 else 1111 'ShellWriteCmd' ShellNum CdCmd 1112 endif 1107 'ShellWriteCmd' ShellNum CdCmd 1113 1108 endif 1114 1109 … … 1180 1175 if directory() <> PrevDir then 1181 1176 CdCmd = 'cdd' EnquoteFilespec( PrevDir) 1177 --dprintf( 'ShellRestore: ShellWriteCmdHidden' ShellNum CdCmd) 1182 1178 'ShellWriteCmdHidden' ShellNum CdCmd 1183 1179 endif … … 1186 1182 -- Restore env from .env file 1187 1183 EnvFile = RestoredFile'.env' 1184 --dprintf( 'ShellRestore: ShellLoadEnv 'EnquoteFileSpec( EnvFile)) 1188 1185 'ShellLoadEnv 'EnquoteFileSpec( EnvFile) 1189 1186 … … 1723 1720 -- prompt line out. 1724 1721 'ShellWriteCmdQuiet 'Cmd'>'LogFile 1722 1725 1723 getfileid ShellFid 1726 1724 … … 1760 1758 enddo 1761 1759 display 1 1760 1762 1761 return OutputLine 1763 1762 … … 1913 1912 -- 2 first line being put out 1914 1913 -- 3 start ended 1914 1915 1915 if GetFileAVar( 'shellstartstate') < 3 then 1916 1916 -- Disable this only for restored shells (StartNumLines > 1) … … 2010 2010 ; 2 prompt after a quiet cmd (not set by a ShellWrite* cmd) 2011 2011 ; 3 cmd hidden (no output at all) 2012 ; 4 prompt hidden and cmd quiet (used at ShellStart only) 2013 ; 5 next output line is the first after a quiet ShellStart 2012 2014 defproc ShellGetCmdIgnoreLevel( CurCmd) 2013 2015 do once = 1 to 1 2014 2016 fDelete = (arg( 2) = 1) 2017 PrevIgnoreLevel = GetFileAVar( 'shellcurrentignorelevel') 2015 2018 --dprintf( 'ShellGetCmdIgnoreLevel for 'CurCmd', fDelete = 'fDelete', arg( 2) = 'arg( 2)) 2019 if PrevIgnoreLevel = 4 then 2020 IgnoreLevel = 4 2021 leave 2022 endif 2016 2023 IgnoreLevel = 0 2017 2018 -- Current start state2019 -- 1 just started2020 -- 2 first line being put out2021 -- 3 start ended2022 if GetFileAVar( 'shellstartstate') < 3 then2023 KeyPath = '\NEPMD\User\Shell\Start\Quiet'2024 if QueryConfigKey( KeyPath) = 1 then2025 -- Omit output during start. This is not safe, because it depends on2026 -- when the output arrives. It works here in all cases.2027 IgnoreLevel = 12028 leave -- once2029 endif2030 endif2031 2032 2024 imax = GetFileAVar( 'shellcmd.0') 2033 2025 --dprintf( ' ShellGetCmdIgnoreLevel: imax = 'imax', CurCmd = |'CurCmd'|') … … 2037 2029 do i = 1 to imax 2038 2030 NextEntry = GetFileAVar( 'shellcmd.'i) 2031 2039 2032 --dprintf( ' ShellGetCmdIgnoreLevel: shellcmd = 'NextEntry', i = 'i) 2040 2033 if not NextEntry then … … 2044 2037 if CurCmd = NextCmd & NextCmd then 2045 2038 IgnoreLevel = NextIgnoreLevel 2039 --dprintf( '** ShellGetCmdIgnoreLevel: ### Set IgnoreLevel = 'IgnoreLevel' for CurCmd = |'CurCmd'|') 2046 2040 --dprintf( ' ShellGetCmdIgnoreLevel: ### Set IgnoreLevel = 'IgnoreLevel' for CurCmd = |'CurCmd'|') 2047 2041 -- Remove CurCmd from cmd list, after it was found … … 2089 2083 PrevLineState = GetFileAVar( 'shelllinestate') 2090 2084 call ShellParsePromptStr( TextStr, CurPrompt, CurCmd) 2085 2086 LastLineStr = textline( .last) 2087 call ShellParsePromptLine( .last, LastPrompt, LastCmd) 2088 2091 2089 fNewCmd = 0 2092 2090 if not CurPrompt then … … 2099 2097 if fNewCmd then 2100 2098 LineState = 1 -- prompt 2101 elseif PrevLineState = 1 then2099 elseif PrevLineState = 1 & LastCmd = '' then 2102 2100 LineState = 2 -- echoed cmd 2103 2101 else … … 2109 2107 -- For the first output after previous empty prompt line, prepend the 2110 2108 -- read prompt to the output string for the CheckLineStr parsing 2111 LastLineStr = textline( .last)2112 call ShellParsePromptLine( .last, LastPrompt, LastCmd)2113 2109 CheckLineStr = TextStr 2114 2110 if LastPrompt & LineState = 2 then … … 2128 2124 -- 2 prompt after a quiet cmd (not set by a ShellWrite* cmd) 2129 2125 -- 3 cmd hidden (no output at all) 2126 -- 4 prompt hidden and cmd quiet (used at ShellStart only) 2127 -- 5 next output line is the first after a quiet ShellStart 2130 2128 -- if prompt or echoed cmd 2131 if LineState = 1 | LineState = 2then2129 if LineState then 2132 2130 -- Redetermine and store current IgnoreLevel 2133 2131 IgnoreLevel = PrevIgnoreLevel … … 2138 2136 fDelete = 1 2139 2137 IgnoreLevel = ShellGetCmdIgnoreLevel( CheckCmd, fDelete) 2140 --dprintf( ' 2138 --dprintf( '** ShellFilerReadLine: IgnoreLevel = 'IgnoreLevel' = ShellGetCmdIgnoreLevel( 'CheckCmd', 'fDelete')') 2141 2139 endif 2142 2140 2143 2141 -- Prompt after an ignored cmd 2144 if LineState = 1 & PrevIgnoreLevel = 1 then 2145 if not CheckCmd | IgnoreLevel = 0 then 2142 --dprintf( '** IgnoreLevel = 'IgnoreLevel', PrevIgnoreLevel = 'PrevIgnoreLevel', LineState = 'LineState', TextStr = 'TextStr) 2143 if LineState then 2144 if PrevIgnoreLevel = 1 then 2145 if not CheckCmd | IgnoreLevel = 0 then 2146 IgnoreLevel = 2 2147 --dprintf( '** Set IgnoreLevel = 'IgnoreLevel) 2148 --dprintf( ' ShellFilerReadLine: LineState = 1 & PrevIgnoreLevel = 1 & (not CheckCmd | IgnoreLevel = 0): Set IgnorwLevel = 'IgnoreLevel) 2149 endif 2150 elseif IgnoreLevel = 1 & PrevIgnoreLevel = 5 then 2151 IgnoreLevel = 5 2152 --dprintf( '** Set IgnoreLevel = 'IgnoreLevel) 2153 elseif PrevIgnoreLevel = 4 then 2154 IgnoreLevel = 5 2155 --dprintf( '** Set IgnoreLevel = 'IgnoreLevel) 2156 elseif PrevIgnoreLevel = 5 then 2146 2157 IgnoreLevel = 2 2147 --dprintf( ' ShellFilerReadLine: LineState = 1 & PrevIgnoreLevel = 1 & (not CheckCmd | IgnoreLevel = 0): Set IgnorwLevel = 'IgnoreLevel)2158 --dprintf( '** Set IgnoreLevel = 'IgnoreLevel) 2148 2159 endif 2149 2160 endif … … 2175 2186 -- 2 prompt after a quiet cmd (not set by a ShellWrite* cmd) 2176 2187 -- 3 cmd hidden (no output at all) 2188 -- 4 prompt hidden and cmd quiet (used at ShellStart only) 2189 -- 5 next output line is the first after a quiet ShellStart 2177 2190 IgnoreLevel = GetFileAVar( 'shellcurrentignorelevel') 2178 --dprintf( ' #ShellProcessReadLine: Current IgnoreLevel = 'IgnoreLevel', TextStr = |'TextStr'|')2191 --dprintf( ' ShellProcessReadLine: Current IgnoreLevel = 'IgnoreLevel', TextStr = |'TextStr'|') 2179 2192 2180 2193 if wordpos( IgnoreLevel, '0 2') then … … 2323 2336 endif 2324 2337 2325 --dprintf( ' ShellProcessReadLine, end: IgnoreLevel = 'IgnoreLevel', TextStr = |'TextStr'|')2338 --dprintf( ' ShellProcessReadLine, end: IgnoreLevel = 'IgnoreLevel', TextStr = |'TextStr'|') 2326 2339 endif 2327 2340 … … 2672 2685 -- add 'ShellWriteCmdQuiet cd' and 'DiscardChanges' after that. 2673 2686 Cmd = 'epmshell loadenv 'EnquoteFileSpec( EnvFile) 2687 --dprintf( 'ShellLoadEnv: ShellWriteCmdHidden 'Cmd) 2674 2688 'ShellWriteCmdHidden 'Cmd 2675 2689 -- 'ShellWriteCmdHidden' won't change the prompt line. To achieve that, 2676 2690 -- uncomment the following: 2677 2691 /* 2678 'ShellWriteCmd cd'2692 'ShellWriteCmdQuiet cd' 2679 2693 'DiscardChanges' 2680 2694 */ -
TabularUnified trunk/src/netlabs/macros/newbar.e ¶
r4857 r4999 115 115 defc TB_Shell 116 116 Action = 'TB_Shell' 117 Command = 'Shell '117 Command = 'ShellSwitchStart' 118 118 Prompt = SHELL_PROMPT 119 119 Help = '' -- Additional prompt or a help panel id 120 120 Title = '' -- Title of the help message box (if no help panel id) 121 121 if CtrlIsDown() then 122 Command = "Open 'Shell '"122 Command = "Open 'ShellSwitchStart'" 123 123 endif 124 124 call ToolbarAction( arg( 1), EXFILE, Action, Command, Prompt, Help, Title) -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r4994 r4999 2605 2605 DefMenuItem( '', -- Create command shell 2606 2606 CREATE_SHELL_MENU__MSG, 2607 'Shell new',2607 'ShellStart', 2608 2608 'Create a command shell buffer', 2609 2609 HP_COMMAND_SHELL) 2610 2610 DefMenuItem( '', -- Switch command shells 2611 2611 'Sw~itch command shells', 2612 'Shell ',2612 'ShellSwitchStart', 2613 2613 'Loop through shell or starting non-shell buffers', 2614 2614 HP_COMMAND_SHELL) … … 2645 2645 'OS/2 command to be executed on start of a shell', 2646 2646 '') 2647 DefMenuItem( 'shellstartquiet', -- Activate quiet start2648 'Activate ~quiet start',2649 'toggle_shell_quiet',2650 'Omit output during start before the following prompt',2651 '',2652 nodismiss)2653 2647 DefMenuItem( 'shellfnc', -- Activate filename completion 2654 2648 'Activate ~filename completion', … … 4653 4647 4654 4648 defc menuinit_configureshell 4655 KeyPath = '\NEPMD\User\Shell\Start\Quiet'4656 on = (QueryConfigKey( KeyPath) <> 0)4657 SetMenuAttribute( 'shellstartquiet', MIA_CHECKED, not on)4658 4659 4649 KeyPath = '\NEPMD\User\Shell\FilenameCompletion' 4660 4650 on = (QueryConfigKey( KeyPath) <> 0) … … 5482 5472 on = not on 5483 5473 WriteConfigKey( KeyPath, on) 5484 SetMenuAttribute( 'dragalwaysmarks', MIA_CHECKED, not on)5474 SetMenuAttribute( 'dragalwaysmarks', MIA_CHECKED, not on) 5485 5475 'mouse_init' -- refresh the register_mousehandler defs 5486 5476 … … 5844 5834 SetMenuAttribute( 'backupdirdialog', MIA_DISABLED, on) 5845 5835 SetMenuAttribute( 'backuplistdir', MIA_DISABLED, on) 5846 endif5847 5848 ; ---------------------------------------------------------------------------5849 defc toggle_shell_quiet5850 universal menuloaded5851 5852 KeyPath = '\NEPMD\User\Shell\Start\Quiet'5853 on = (QueryConfigKey( KeyPath) <> 0)5854 on = not on5855 WriteConfigKey( KeyPath, on)5856 if menuloaded then5857 SetMenuAttribute( 'shellstartquiet', MIA_CHECKED, not on)5858 5836 endif 5859 5837
Note:
See TracChangeset
for help on using the changeset viewer.