aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/main.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-11-04 15:00:36 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-11-04 15:00:36 -0700
commit65e84b15a944c83862da736a427636f3e64d3fc2 (patch)
tree57cf3fa0d883ae45f322231cf16235cfb954cde0 /sys/cmd/rc/main.c
parent1455834a50b8b6a15567e971db664fe7a6cdfaf6 (diff)
Feat: input readline now unicode aware
Updated our assumptions of readline to handle valid unicode input. This required integrating with an explicit library to handle unicode knowledge.
Diffstat (limited to 'sys/cmd/rc/main.c')
-rw-r--r--sys/cmd/rc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cmd/rc/main.c b/sys/cmd/rc/main.c
index 12f0859..865bcde 100644
--- a/sys/cmd/rc/main.c
+++ b/sys/cmd/rc/main.c
@@ -59,7 +59,7 @@ main(int argc, char *argv[])
initkeywords();
initshell();
- // enablevi();
+ enablevi();
xboot(argc, argv);
/* unreachable */
}