mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
parent
707a4ebc15
commit
66cedf0b3a
@ -41,8 +41,10 @@ lazy_static! {
|
||||
"right_brace" => '}'.to_string(),
|
||||
"rbrace" => '}'.to_string(),
|
||||
"left_paren" => '('.to_string(),
|
||||
"lp" => '('.to_string(),
|
||||
"lparen" => '('.to_string(),
|
||||
"right_paren" => ')'.to_string(),
|
||||
"rp" => ')'.to_string(),
|
||||
"rparen" => ')'.to_string(),
|
||||
"left_bracket" => '['.to_string(),
|
||||
"lbracket" => '['.to_string(),
|
||||
@ -97,6 +99,8 @@ lazy_static! {
|
||||
"question" => '?'.to_string(), // ? question, q
|
||||
"q" => '?'.to_string(),
|
||||
"colon" => ':'.to_string(), // : colon
|
||||
"underscore" => '_'.to_string(),
|
||||
"u" => '_'.to_string(),
|
||||
|
||||
// This is the unicode section
|
||||
// Unicode names came from https://www.compart.com/en/unicode
|
||||
|
Loading…
Reference in New Issue
Block a user