#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Mon, 07 May 2018 12:58:07 +0200
changeset 22776 a605605e6324
parent 22775 e42cbc3a3e7b
child 22777 8edae1451af4
#FEATURE by cg class: ReadEvalPrintLoop changed: #cmd_help: #cmd_ide: #showBreakpoints
ReadEvalPrintLoop.st
--- a/ReadEvalPrintLoop.st	Mon May 07 12:46:17 2018 +0200
+++ b/ReadEvalPrintLoop.st	Mon May 07 12:58:07 2018 +0200
@@ -694,6 +694,7 @@
 Valid commands are:
     #exit ............... exit interpreter loop
     #help ............... this text
+    #ide ................ open the IDE
     #apropos word ....... list classes/selectors matching word
     #list <what> ........ show source
         class .............. class definition and comment
@@ -746,7 +747,7 @@
 cmd_ide:lineStream
     "upen up the ide"
 
-    Smalltalk mainStartup:true.
+    NewLauncher open.
 !
 
 cmd_language:lineStream
@@ -1194,7 +1195,7 @@
     Smalltalk allClassesDo:[:cls |
         cls theNonMetaclass instAndClassSelectorsAndMethodsDo:[:sel :mthd |
             mthd isWrapped ifTrue:[
-                stderr showCR:'  %1' with:(mthd whoString)
+                stderr showCR:(mthd whoString)
             ].
         ].
     ].