Don't add empty prompt input to history (#3259)

imgbot
A-Walrus 2 years ago committed by GitHub
parent a8b123fe17
commit 5ca98edfb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -533,16 +533,17 @@ impl Component for Prompt {
.map(|entry| entry.into())
.unwrap_or_else(|| Cow::from(""))
} else {
if let Some(register) = self.history_register {
// store in history
let register = cx.editor.registers.get_mut(register);
register.push(self.line.clone());
}
self.line.as_str().into()
};
(self.callback_fn)(cx, &input, PromptEvent::Validate);
if let Some(register) = self.history_register {
// store in history
let register = cx.editor.registers.get_mut(register);
register.push(self.line.clone());
}
return close_fn;
}
}

Loading…
Cancel
Save