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 have noticed a very weird problem with company (with LSP). When typing something and i get the autocomplete options in the list but i decide to delete a few characters (using backspace) the entire line delimiter (\n) gets deleted for some reason and the line below the one i am editing. What is odd is this is happening only when deleting the member accessor (e.g . or -> in c/c++). The same issue also happens if you start typing a symbol, the suggestions show up, if you start deleting char by char, the list updates, but the moment you delete the last character, instead of leaving just a blank line, it inserts the top most suggestion in the list of suggestions and again deletes the new line char (\n)
Type some_var;
some_var.<box-of-suggestions-pops>
............... more code below .......................................
// (BACKSPACE) the member delimiter the dot (.) from some_var
// code below is now on the same line as where i was editing
some_type............... more code now on the same line .......................................
symbol_name<box-of-suggestions-pops>
............... more code below .......................................
// (BACKSPACE) until left out with just an s
s<box-of-suggestions-updated>
............... more code below .......................................
// (BACKSPACE) the s character
<suggestion-on-the-top-when-s-was-present-is-inserted> ............... more code now on the same line .......................................
The text was updated successfully, but these errors were encountered:
``I have noticed a very weird problem with company (with LSP). When typing something and i get the autocomplete options in the list but i decide to delete a few characters (using backspace) the entire line delimiter (\n) gets deleted for some reason and the line below the one i am editing. What is odd is this is happening only when deleting the member accessor (e.g . or -> in c/c++). The same issue also happens if you start typing a symbol, the suggestions show up, if you start deleting char by char, the list updates, but the moment you delete the last character, instead of leaving just a blank line, it inserts the top most suggestion in the list of suggestions and again deletes the new line char (\n)
The text was updated successfully, but these errors were encountered: