diff options
author | Kirawi | 2021-12-08 07:11:18 +0000 |
---|---|---|
committer | GitHub | 2021-12-08 07:11:18 +0000 |
commit | 29c053e84e2624feb786f520ebae4c752bc23279 (patch) | |
tree | d537982f3f7304142a84b0affacc5f830bca105c /helix-term/src/ui/completion.rs | |
parent | d08bdfa838098769afc59146b62f9d613d4a7ff4 (diff) |
Only use a single documentation popup (#1241)
Diffstat (limited to 'helix-term/src/ui/completion.rs')
-rw-r--r-- | helix-term/src/ui/completion.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/completion.rs b/helix-term/src/ui/completion.rs index dd782d29..fcd63199 100644 --- a/helix-term/src/ui/completion.rs +++ b/helix-term/src/ui/completion.rs @@ -168,7 +168,7 @@ impl Completion { } }; }); - let popup = Popup::new(menu); + let popup = Popup::new("completion", menu); let mut completion = Self { popup, start_offset, |