Various line editor fixes and optimizations

This commit is contained in:
2026-02-25 15:43:08 -05:00
parent 415c9b4a53
commit 28ce008234
18 changed files with 359 additions and 152 deletions

View File

@@ -21,7 +21,7 @@ fn getopt_from_argv() {
panic!()
};
let (words, opts) = get_opts_from_tokens(argv, &ECHO_OPTS);
let (words, opts) = get_opts_from_tokens(argv, &ECHO_OPTS).expect("failed to get opts");
insta::assert_debug_snapshot!(words);
insta::assert_debug_snapshot!(opts)
}