aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/ui/completion.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/src/ui/completion.rs b/helix-term/src/ui/completion.rs
index 6897305d..c7955a3d 100644
--- a/helix-term/src/ui/completion.rs
+++ b/helix-term/src/ui/completion.rs
@@ -118,6 +118,7 @@ impl Completion {
offset_encoding: helix_lsp::OffsetEncoding,
start_offset: usize,
trigger_offset: usize,
+ include_placeholder: bool,
) -> Transaction {
use helix_lsp::snippet;
@@ -144,6 +145,7 @@ impl Completion {
&edit,
doc.line_ending.as_str(),
offset_encoding,
+ include_placeholder,
),
Err(err) => {
log::error!(
@@ -216,6 +218,7 @@ impl Completion {
offset_encoding,
start_offset,
trigger_offset,
+ true,
);
// initialize a savepoint
@@ -238,6 +241,7 @@ impl Completion {
offset_encoding,
start_offset,
trigger_offset,
+ false,
);
doc.apply(&transaction, view.id);