style: improved readability for fish init

This commit is contained in:
iff 2023-08-04 16:31:17 +02:00
parent 683fdad837
commit 05d3852287

View file

@ -173,7 +173,11 @@ pub fn initialization(shell: &str, binary_path: &str, auto_alias: &str) {
} }
"fish" => { "fish" => {
init = format!( init = format!(
r#"function {} -d "Terminal command correction"; {}; end"#, r#"
function {} -d "Terminal command correction"
{}
end
"#,
auto_alias, init auto_alias, init
); );
} }