diff --git a/kalk_cli/src/repl.rs b/kalk_cli/src/repl.rs index a101c82..f45a51c 100644 --- a/kalk_cli/src/repl.rs +++ b/kalk_cli/src/repl.rs @@ -92,6 +92,8 @@ const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! { "deg" => "°", "floor" => "⌊⌋", "ceil" => "⌈⌉", + "(" => "()", + "sum" => "Σ", }; impl Completer for RLHelper {