aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-lsp/src/snippet.rs13
-rw-r--r--helix-term/src/ui/completion.rs4
2 files changed, 13 insertions, 4 deletions
diff --git a/helix-lsp/src/snippet.rs b/helix-lsp/src/snippet.rs
index 87c839f9..441c419f 100644
--- a/helix-lsp/src/snippet.rs
+++ b/helix-lsp/src/snippet.rs
@@ -64,6 +64,7 @@ pub fn into_transaction<'a>(
edit: &lsp_types::TextEdit,
line_ending: &str,
offset_encoding: OffsetEncoding,
+ include_placeholer: bool,
) -> helix_core::Transaction {
use helix_core::{smallvec, Range, Selection, Transaction};
use SnippetElement::*;
@@ -119,10 +120,14 @@ pub fn into_transaction<'a>(
// https://doc.rust-lang.org/beta/unstable-book/language-features/box-patterns.html
// would make this a bit nicer
Text(text) => {
- let len_chars = text.chars().count();
- tabstops.push((tabstop, Range::new(offset, offset + len_chars + 1)));
- offset += len_chars;
- insert.push_str(text);
+ if include_placeholer {
+ let len_chars = text.chars().count();
+ tabstops.push((tabstop, Range::new(offset, offset + len_chars + 1)));
+ offset += len_chars;
+ insert.push_str(text);
+ } else {
+ tabstops.push((tabstop, Range::point(offset)));
+ }
}
other => {
log::error!(
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);