From b3b328d19d7e2233df3a4dc4d9720d58f98e5ef5 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Sat, 18 Dec 2021 12:13:10 -0600 Subject: [PATCH] add lp and rp (#518) --- crates/nu-command/src/strings/char_.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/nu-command/src/strings/char_.rs b/crates/nu-command/src/strings/char_.rs index 989ec705a9..8aadb5a029 100644 --- a/crates/nu-command/src/strings/char_.rs +++ b/crates/nu-command/src/strings/char_.rs @@ -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(),