crystal-community / icr

Interactive console for Crystal programming language
MIT License
506 stars 40 forks source link

Add --prompt-mode flag #98

Closed veelenga closed 6 years ago

veelenga commented 6 years ago

fixes #96

$ ./bin/icr
icr(0.24.2) >
icr(0.24.2) > ^D

$ ./bin/icr --prompt-mode simple
> a = 1
 => 1
> ^D

$ ./bin/icr --prompt-mode none
a = 1
 => 1
^D

$ ./bin/icr --prompt-mode no-such-mode
wrong prompt mode (ArgumentError)
  from Icr::Console#prompt:String
  from __crystal_main
  from main

/cc @KINGSABRI

jwoertink commented 6 years ago

Sweet! Looks good.

KINGSABRI commented 6 years ago

Cool Cool, how to update the shred once the PR get merged?

veelenga commented 6 years ago

Reinstall it from sources: https://github.com/crystal-community/icr#installation

We will prepare a new release later.