perf(dotfiles): remove defunct bind feature detection for fish

This commit is contained in:
Kid 2025-01-08 18:35:32 +08:00 committed by GitHub
parent 05aec6f8d6
commit 5d83a8b890
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,19 +18,12 @@ bind -M insert \e\[A _atuin_bind_up";
if !disable_ctrl_r {
println!("{BIND_CTRL_R}");
}
if !disable_up_arrow {
println!("{BIND_UP_ARROW}");
}
println!("if bind -M insert > /dev/null 2>&1");
if !disable_ctrl_r {
println!("{BIND_CTRL_R_INS}");
}
if !disable_up_arrow {
println!("{BIND_UP_ARROW}");
println!("{BIND_UP_ARROW_INS}");
}
println!("end");
}
}