Added gamma function.

This commit is contained in:
PaddiM8 2020-06-09 15:53:29 +02:00
parent a35bcc054a
commit 8d2e0b092b

View File

@ -89,12 +89,13 @@ struct RLHelper {
impl Helper for RLHelper {}
const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! {
"sqrt" => "",
"ceil" => "⌈⌉",
"deg" => "°",
"floor" => "⌊⌋",
"ceil" => "⌈⌉",
"(" => "()",
"gamma" => "Γ",
"sum" => "Σ()",
"sqrt" => "",
"(" => "()",
};
impl Completer for RLHelper {