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
It seems like word word ( [LETTER] | where | is the cursor, blocks the completion
Cases where I get suggestions by pressing the show keymap
voidfoo(|
voidfoo(|)
voidfoo(std::|
voidfoo(std::)
Cases where I don't
voidfoo(s|
voidfoo(s|)
voidfoo(std::s|
voidfoo(std::s|)
The text was updated successfully, but these errors were encountered:
lopi-py
changed the title
Suggestions doesn't appear in parameters with c-like function syntax
Suggestions doesn't appear in parameters with c-like function declaration syntax
Oct 22, 2024
After debugging, 63b7b22 is the offending commit. Enabling fuzzy.use_typo_resistantpartially (only if the character previous to the cursor is in lower case) fixes this, but still feels like undesired behavior
It seems like
word word ( [LETTER] |
where|
is the cursor, blocks the completionCases where I get suggestions by pressing the
show
keymapCases where I don't
The text was updated successfully, but these errors were encountered: