Added completion for constants.

This commit is contained in:
PaddiM8 2020-06-12 00:49:50 +02:00
parent 2e2c068593
commit 73d2c1c99e
3 changed files with 5 additions and 2 deletions

2
kalk_cli/Cargo.lock generated
View File

@ -150,7 +150,7 @@ dependencies = [
[[package]]
name = "kalk_cli"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"ansi_term",
"kalk",

View File

@ -1,6 +1,6 @@
[package]
name = "kalk_cli"
version = "0.1.3"
version = "0.1.4"
authors = ["PaddiM8"]
edition = "2018"
readme = "../README.md"

View File

@ -91,7 +91,10 @@ const COMPLETION_FUNCS: phf::Map<&'static str, &'static str> = phf::phf_map! {
"floor" => "⌊⌋",
"gamma" => "Γ",
"sum" => "Σ()",
"phi" => "ϕ",
"pi" => "π",
"sqrt" => "",
"tau" => "τ",
"(" => "()",
};