summaryrefslogtreecommitdiff
path: root/helix-term/src/ui/prompt.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-05-06 08:20:00 +0000
committerBlaž Hrastnik2021-05-06 08:20:00 +0000
commitfd4fd12fa3dd565b56edb395bd625b0d2ec8ad46 (patch)
tree6c6ecf7777cb9eb7d9943122073a8a8e950abcbb /helix-term/src/ui/prompt.rs
parentba970054957238cb682ae3be022b675131beb6f8 (diff)
clippy lint
Diffstat (limited to 'helix-term/src/ui/prompt.rs')
-rw-r--r--helix-term/src/ui/prompt.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs
index 04108d79..c59a0eed 100644
--- a/helix-term/src/ui/prompt.rs
+++ b/helix-term/src/ui/prompt.rs
@@ -31,8 +31,8 @@ impl Prompt {
prompt: String,
mut completion_fn: impl FnMut(&str) -> Vec<Completion> + 'static,
callback_fn: impl FnMut(&mut Editor, &str, PromptEvent) + 'static,
- ) -> Prompt {
- Prompt {
+ ) -> Self {
+ Self {
prompt,
line: String::new(),
cursor: 0,