mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-26 14:01:13 -03:00
Ensure `bind` builtin lists binds for all modes if `--mode` is not given. - The `get` function in `src/input.rs` now takes an optional bind mode and returns a list of input mappings (binds). - The `list_one` function in `src/builtins/bind.rs` lists binds in the results returned by `get`. - Creating the output string for a bind has been extracted to its own function: `BuiltinBind::generate_output_string`. - The `bind_mode_given` option has been removed. Fixes #12214 Closes #12285