Added completions for sum and parenthesis.

This commit is contained in:
PaddiM8 2020-06-09 10:34:58 +02:00
parent 995897fc25
commit 8d111d2fe2

View File

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