As far as I can see, the normal installers no longer create the jbreak icon.

Here is one possible update to ~addons/ide/jhs/installer.ijs jbreak to add a jbreak option for shortcut:

Old:
Winx=: 3 : 0
select. y
case.'jc' do.
 win'jc' ;'jconsole';'jgray.ico';LIB
case. 'jhs' do.
 win'jhs';'jconsole';'jblue.ico';LIB,A
case. 'jqt' do.
 win'jqt';'jqt'     ;'jgreen.ico';LIB
case. do.
 assert 0
end.
)

New:
Winx=: 3 : 0
select. y
case.'jc' do.
 win'jc' ;'jconsole';'jgray.ico';LIB
case. 'jhs' do.
 win'jhs';'jconsole';'jblue.ico';LIB,A
case. 'jqt' do.
 win'jqt';'jqt'     ;'jgreen.ico';LIB
case. 'jbreak' do.
 win'jbreak';'jbreak.bat'     ;'jyellow.ico';LIB
case. do.
 assert 0
end.
)

   load'~addons/ide/jhs/installer.ijs'
   shortcut 'jbreak'

David Mitchell

On 4/22/2020 08:49, Frank Hamilton wrote:
I loaded J8.01 and now J9.01 but I don't know how to break execution like I
used to do with the yellow J icon. The yellow J icon is not there but I
don't see what I missed.
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to