mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 13:33:02 +08:00
Only set bind mode if it changed
This is potentially costly (as functions listening for the variable will be executed). Fixes #3216.
This commit is contained in:
parent
7ce042ccff
commit
a0623e870b
|
@ -216,8 +216,11 @@ wcstring input_get_bind_mode() {
|
|||
|
||||
/// Set the current bind mode.
|
||||
void input_set_bind_mode(const wcstring &bm) {
|
||||
// Only set this if it differs to not execute variable handlers all the time.
|
||||
if (input_get_bind_mode() != bm.c_str()) {
|
||||
env_set(FISH_BIND_MODE_VAR, bm.c_str(), ENV_GLOBAL);
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns the arity of a given input function.
|
||||
int input_function_arity(int function) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user