aboutsummaryrefslogtreecommitdiff
path: root/cipher
diff options
context:
space:
mode:
authormryouse2022-07-06 00:26:41 +0000
committermryouse2022-07-06 00:26:41 +0000
commit55b7d7a86f40fc22ae0c04771289c39de15f51ce (patch)
treef2ff4bdadd27d2941edededc77db3aa6112aced7 /cipher
parent7ae8bce37e0fa24ce9cdbcc51bfc1ed4c3c690e6 (diff)
use 'use-as' to bring in library
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 5cb7386..1888b76 100644
--- a/cipher/viewer.neb
+++ b/cipher/viewer.neb
@@ -1,4 +1,4 @@
-(use "../libs/ansi.neb")
+(use-as "../libs/ansi.neb" ansi)
(func keys (assoc)
(map first assoc))
@@ -17,7 +17,7 @@
(concat out
(if (in? _item_ (keys codex))
(get codex _item_)
- (ansi-faint _item_)))))
+ (ansi/faint _item_)))))
out)
(func print-codex (codex)