Fix panic (debug), no indend (release) in REPL.

This commit is contained in:
jfh
2021-08-24 08:39:55 +03:00
parent ca1e349a18
commit f889add815

View File

@@ -161,7 +161,7 @@ cfg_if::cfg_if! {
.complete_opt(&line[0..pos])
// as far as I can tell, there's no better way to do both completion
// and indentation (or even just indentation)
.unwrap_or_else(|| (line.len(), vec!["\t".to_owned()])))
.unwrap_or_else(|| (pos, vec!["\t".to_owned()])))
}
}