# HG changeset patch # User Claus Gittinger # Date 1525690687 -7200 # Node ID a605605e63242f4c3ee8876803c6a02e90e52e33 # Parent e42cbc3a3e7bca2580d90eaf2d5e10427cb7db83 #FEATURE by cg class: ReadEvalPrintLoop changed: #cmd_help: #cmd_ide: #showBreakpoints diff -r e42cbc3a3e7b -r a605605e6324 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 ........ 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) ]. ]. ].