reader rls: remove redundant initial value

This initial value is weird and None works the same way so use that.
This commit is contained in:
Johannes Altmanninger
2026-01-02 10:39:43 +01:00
parent e20024f0f0
commit 185b91de13

View File

@@ -590,7 +590,7 @@ fn new() -> Self {
Self {
last_cmd: None,
yank_len: 0,
completion_action: Some(CompletionAction::InsertedUnique),
completion_action: None,
finished: false,
nchars: None,
}