mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 12:18:07 +02:00
Fix char lsep
assignment (#15065)
Fix `char eol` issue where there was still a hardcoded `\n` taking effect on Windows.
This commit is contained in:
@ -69,7 +69,6 @@ static CHAR_MAP: LazyLock<IndexMap<&'static str, String>> = LazyLock::new(|| {
|
||||
"eol" => LINE_SEPARATOR_CHAR.to_string(),
|
||||
"lsep" => LINE_SEPARATOR_CHAR.to_string(),
|
||||
"line_sep" => LINE_SEPARATOR_CHAR.to_string(),
|
||||
"lsep" => '\n'.to_string(),
|
||||
"esep" => ENV_PATH_SEPARATOR_CHAR.to_string(),
|
||||
"env_sep" => ENV_PATH_SEPARATOR_CHAR.to_string(),
|
||||
"tilde" => '~'.to_string(), // ~
|
||||
|
Reference in New Issue
Block a user