Added completions for sum and parenthesis.

This commit is contained in:
PaddiM8 2020-06-09 10:34:58 +02:00
parent 280654130d
commit cb1dbada71

View File

@ -92,6 +92,8 @@ const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! {
"deg" => "°", "deg" => "°",
"floor" => "⌊⌋", "floor" => "⌊⌋",
"ceil" => "⌈⌉", "ceil" => "⌈⌉",
"(" => "()",
"sum" => "Σ",
}; };
impl Completer for RLHelper { impl Completer for RLHelper {