mirror of
https://github.com/nushell/nushell
synced 2025-01-14 14:14:13 +00:00
Add CR, LF and CRLF to char command (#691)
This commit is contained in:
parent
8a0d2b4e32
commit
eab6b322bb
1 changed files with 5 additions and 0 deletions
|
@ -26,6 +26,11 @@ lazy_static! {
|
||||||
"newline" => '\n'.to_string(),
|
"newline" => '\n'.to_string(),
|
||||||
"enter" => '\n'.to_string(),
|
"enter" => '\n'.to_string(),
|
||||||
"nl" => '\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(),
|
"tab" => '\t'.to_string(),
|
||||||
"sp" => ' '.to_string(),
|
"sp" => ' '.to_string(),
|
||||||
"space" => ' '.to_string(),
|
"space" => ' '.to_string(),
|
||||||
|
|
Loading…
Reference in a new issue