pub fn parse_steps(toml_fragment: &str) -> Result<Vec<SetupStep>>Expand description
Parse [[jj-hooks.setup]] array-of-tables from a TOML fragment.
Input is the value jj config get jj-hooks.setup prints, which
for an array-of-tables comes back as a TOML array of inline
tables on a single line, e.g.
[{ run = ["bun", "install"] }, { run = ["echo", "done"] }].