erg-lang / erg

A statically typed language compatible with Python
http://erg-lang.org
Apache License 2.0
2.68k stars 55 forks source link

Readline/rlwrap like ability in Erg REPL #461

Open James4Ever0 opened 1 year ago

James4Ever0 commented 1 year ago

Currently I use this script under /usr/bin/ergi on Linux to make it work:

#!/bin/bash
rlwrap erg $@

Can we make it builtin?

mtshiba commented 12 months ago

There is a build option full-repl which enables the history feature and cursor movement.

cargo install erg --features full-repl