aboutsummaryrefslogtreecommitdiff
path: root/cipher
diff options
context:
space:
mode:
authormryouse2022-06-12 23:02:07 +0000
committermryouse2022-06-12 23:02:07 +0000
commit7a41e30d88bad8a88884fe366ec7c6cb6c7a876e (patch)
tree2c33f792f0886de695195a6158ae5463d419a9bf /cipher
parent6bc48ae878b40fe76231c8adafcbee13b35368be (diff)
s/input/read-line/
Diffstat (limited to 'cipher')
-rw-r--r--cipher/viewer.neb4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/viewer.neb b/cipher/viewer.neb
index c5d15cb..5cb7386 100644
--- a/cipher/viewer.neb
+++ b/cipher/viewer.neb
@@ -17,7 +17,7 @@
(concat out
(if (in? _item_ (keys codex))
(get codex _item_)
- (ansi-bright-black _item_)))))
+ (ansi-faint _item_)))))
out)
(func print-codex (codex)
@@ -40,7 +40,7 @@
(print "")
(print-codex cur)
(print "")
- (def inp (split (strip (input "? ")) " "))
+ (def inp (split (strip (read-line "? ")) " "))
(branch
((eq? "quit" (first inp)) (exit))
((eq? "save" (first inp)) (save-and-exit cipher cur))