Adds platform agnostic EoL separator to char command (#15059)

Adds `char eol`, `char line_sep`, and `char lsep` (synonyms) to represent
the platform specific line ending character(s).
This commit is contained in:
Douglas
2025-02-08 16:23:51 -05:00
committed by GitHub
parent 5a7707cb52
commit 26897b287c
3 changed files with 16 additions and 1 deletions

View File

@ -8,5 +8,5 @@ fn test_char_list_outputs_table() {
"#
));
assert_eq!(actual.out, "107");
assert_eq!(actual.out, "113");
}

View File

@ -1,2 +1,3 @@
mod ansi_;
mod char_;
mod kill;