aboutsummaryrefslogtreecommitdiff
path: root/repl.c
diff options
context:
space:
mode:
Diffstat (limited to 'repl.c')
-rw-r--r--repl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/repl.c b/repl.c
index b41f241..bc4d7e8 100644
--- a/repl.c
+++ b/repl.c
@@ -42,6 +42,12 @@ run (struct context *ctx, struct item *program) {
}
}
+static int
+init_readline (void) {
+ rl_variable_bind ("blink-matching-paren", "on");
+ return 0;
+}
+
int
main (int argc, char *argv[]) {
(void) argc;
@@ -54,6 +60,7 @@ main (int argc, char *argv[]) {
using_history ();
const char *slash = strrchr (argv[0], '/');
rl_readline_name = slash ? ++slash : argv[0];
+ rl_startup_hook = init_readline;
char *line;
while ((line = readline ("> "))) {