mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
add char separators (#4667)
* add char separators * sir clipster * unclippy
This commit is contained in:
parent
7819210037
commit
796d4920ab
1 changed files with 14 additions and 0 deletions
|
@ -132,6 +132,20 @@ lazy_static! {
|
|||
// This is the "other" section
|
||||
"bel" => '\x07'.to_string(), // Terminal Bell
|
||||
"backspace" => '\x08'.to_string(), // Backspace
|
||||
|
||||
// separators
|
||||
"file_separator" => '\x1c'.to_string(),
|
||||
"file_sep" => '\x1c'.to_string(),
|
||||
"fs" => '\x1c'.to_string(),
|
||||
"group_separator" => '\x1d'.to_string(),
|
||||
"group_sep" => '\x1d'.to_string(),
|
||||
"gs" => '\x1d'.to_string(),
|
||||
"record_separator" => '\x1e'.to_string(),
|
||||
"record_sep" => '\x1e'.to_string(),
|
||||
"rs" => '\x1e'.to_string(),
|
||||
"unit_separator" => '\x1f'.to_string(),
|
||||
"unit_sep" => '\x1f'.to_string(),
|
||||
"us" => '\x1f'.to_string(),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue