fixes showing the last prompt on empty input (#2870)
This commit is contained in:
parent
d948ace67b
commit
3dbad0442f
2 changed files with 6 additions and 2 deletions
|
@ -73,6 +73,10 @@ impl Registers {
|
|||
self.read(name).and_then(|entries| entries.first())
|
||||
}
|
||||
|
||||
pub fn last(&self, name: char) -> Option<&String> {
|
||||
self.read(name).and_then(|entries| entries.last())
|
||||
}
|
||||
|
||||
pub fn inner(&self) -> &HashMap<char, Register> {
|
||||
&self.inner
|
||||
}
|
||||
|
|
|
@ -443,7 +443,7 @@ impl Prompt {
|
|||
let input: Cow<str> = if self.line.is_empty() {
|
||||
// latest value in the register list
|
||||
self.history_register
|
||||
.and_then(|reg| cx.editor.registers.first(reg))
|
||||
.and_then(|reg| cx.editor.registers.last(reg))
|
||||
.map(|entry| entry.into())
|
||||
.unwrap_or_else(|| Cow::from(""))
|
||||
} else {
|
||||
|
@ -522,7 +522,7 @@ impl Component for Prompt {
|
|||
let input: Cow<str> = if self.line.is_empty() {
|
||||
// latest value in the register list
|
||||
self.history_register
|
||||
.and_then(|reg| cx.editor.registers.first(reg).cloned())
|
||||
.and_then(|reg| cx.editor.registers.last(reg).cloned())
|
||||
.map(|entry| entry.into())
|
||||
.unwrap_or_else(|| Cow::from(""))
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue