diff options
author | Pascal Kuthe | 2023-03-11 02:34:43 +0000 |
---|---|---|
committer | GitHub | 2023-03-11 02:34:43 +0000 |
commit | 171d28d2bdefa59ebada9eee13ef7e5cbdf0c0af (patch) | |
tree | 3664ebd897b1e44f8514612a19203edbabf6c56e /helix-term/src/ui | |
parent | bdcd4d9411655ab69245d803e88f88cc278127da (diff) |
indent snippets to line indent instead of completion start (#6263)
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/completion.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/completion.rs b/helix-term/src/ui/completion.rs index 6303793b..da6b5ddc 100644 --- a/helix-term/src/ui/completion.rs +++ b/helix-term/src/ui/completion.rs @@ -182,6 +182,7 @@ impl Completion { doc.line_ending.as_str(), include_placeholder, doc.tab_width(), + doc.indent_width(), ), Err(err) => { log::error!( |