all repos — min @ 251f9db3d3fa347ad4b981a53baa0f70337ae5a8

A small but practical concatenative programming language.

Fixed prompt.
h3rald h3rald@h3rald.com
Sat, 29 Jul 2023 16:28:02 +0200
commit

251f9db3d3fa347ad4b981a53baa0f70337ae5a8

parent

30c80161cae4cfbaac16856c0c881679db889c6b

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

jump to
M min.nimmin.nim

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

let res = EDITOR.readLine() if res == false: quit(0) - let r = i.interpret(EDITOR.getLine()) - if $line != "": + line = EDITOR.getLine() + let r = i.interpret(line) + 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 -* Significantly improved the min shell prompt by leveraging the nim-noise library +* Improved the min shell prompt (especially on Linux and macOS) by leveraging the nim-noise library, which supports unicode and multiple lines. ### Fixes and Improvements