Skip to content

Commit

Permalink
perf(dotfiles): remove defunct bind feature detection for fish
Browse files Browse the repository at this point in the history
  • Loading branch information
kidonng authored Jan 8, 2025
1 parent 05aec6f commit 5d83a8b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions crates/atuin/src/command/client/init/fish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}

Expand Down

0 comments on commit 5d83a8b

Please sign in to comment.