mirror of
https://github.com/nushell/nushell.git
synced 2024-12-16 12:12:19 +01:00
Add CR, LF and CRLF to char command (#691)
This commit is contained in:
parent
8a0d2b4e32
commit
eab6b322bb
@ -26,6 +26,11 @@ lazy_static! {
|
||||
"newline" => '\n'.to_string(),
|
||||
"enter" => '\n'.to_string(),
|
||||
"nl" => '\n'.to_string(),
|
||||
"line_feed" => '\n'.to_string(),
|
||||
"lf" => '\n'.to_string(),
|
||||
"carriage_return" => '\r'.to_string(),
|
||||
"cr" => '\r'.to_string(),
|
||||
"crlf" => "\r\n".to_string(),
|
||||
"tab" => '\t'.to_string(),
|
||||
"sp" => ' '.to_string(),
|
||||
"space" => ' '.to_string(),
|
||||
|
Loading…
Reference in New Issue
Block a user