mirror of
https://github.com/nushell/nushell
synced 2024-12-27 13:33:16 +00:00
add lp and rp (#518)
This commit is contained in:
parent
46b86f3541
commit
b3b328d19d
1 changed files with 2 additions and 0 deletions
|
@ -35,9 +35,11 @@ lazy_static! {
|
|||
"right_brace" => '}'.to_string(),
|
||||
"rbrace" => '}'.to_string(),
|
||||
"left_paren" => '('.to_string(),
|
||||
"lp" => '('.to_string(),
|
||||
"lparen" => '('.to_string(),
|
||||
"right_paren" => ')'.to_string(),
|
||||
"rparen" => ')'.to_string(),
|
||||
"rp" => ')'.to_string(),
|
||||
"left_bracket" => '['.to_string(),
|
||||
"lbracket" => '['.to_string(),
|
||||
"right_bracket" => ']'.to_string(),
|
||||
|
|
Loading…
Reference in a new issue