You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing an issue which automatically adds parentheses when completing Elm function names. For example, when I type actionMenuBlock, the completion suggestion inserts actionMenuBlock() instead of just actionMenuBlock, which is not valid in Elm.
Steps to Reproduce
Open a file with Elm code in Neovim.
Start typing an Elm function name.
Trigger the autocompletion .
Select the suggestion for functionName.
Notice that it inserts functionName() instead of functionName.
Expected Behavior
The expected behavior is that the autocompletion should insert the function name without parentheses, resulting in functionName.
Actual Behavior
The actual behavior is that the autocompletion inserts the function name with parentheses, resulting in functionName().
Relevant configuration
neovim version
v0.10.4
blink.cmp version
v0.11.0
The text was updated successfully, but these errors were encountered:
Make sure you have done the following
blink.cmp
<C-k>
on https://cmp.saghen.dev)Bug Description
Description
I am experiencing an issue which automatically adds parentheses when completing Elm function names. For example, when I type
actionMenuBlock
, the completion suggestion insertsactionMenuBlock()
instead of justactionMenuBlock
, which is not valid in Elm.Steps to Reproduce
functionName
.functionName()
instead offunctionName
.Expected Behavior
The expected behavior is that the autocompletion should insert the function name without parentheses, resulting in
functionName
.Actual Behavior
The actual behavior is that the autocompletion inserts the function name with parentheses, resulting in
functionName()
.Relevant configuration
neovim
versionv0.10.4
blink.cmp
versionv0.11.0
The text was updated successfully, but these errors were encountered: