all repos — min @ 381d6807fb0b9c05e903cd5a71acde3003d15336

A small but practical concatenative programming language.

Revert "Fixed prompt."

This reverts commit 251f9db3d3fa347ad4b981a53baa0f70337ae5a8.
h3rald h3rald@h3rald.com
Sun, 30 Jul 2023 04:29:08 +0000
commit

381d6807fb0b9c05e903cd5a71acde3003d15336

parent

eb68fe787601b225aaf9f9b8b884e999bfd64393

2 files changed, 3 insertions(+), 4 deletions(-)

jump to
M min.nimmin.nim

@@ -319,9 +319,8 @@ EDITOR.setPrompt(prompt)

let res = EDITOR.readLine() if res == false: quit(0) - line = EDITOR.getLine() - let r = i.interpret(line) - if line != "": + let r = i.interpret(EDITOR.getLine()) + if $line != "": i.printResult(r) proc minRepl*() =
M next-release.mdnext-release.md

@@ -4,7 +4,7 @@ * Removed the following symbols because custom key mapping is not available in the nim-noise library (yet): `mapkey`, `unmapkey`.

### New Features -* Improved the min shell prompt (especially on Linux and macOS) by leveraging the nim-noise library, which supports unicode and multiple lines. +* Significantly improved the min shell prompt by leveraging the nim-noise library ### Fixes and Improvements