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 using smartparens, and one of the things smartparens does (which I generally) like is that after typing an opening " character a closing " is automatically added for me after the point. Suppose I'm in a C or C++ source file and I type #include "absl/container/flat_. The current point will be set to just after the _ character but just before the closing " character that smartparens added. The company auto completions will now be flat_hash_map.h" and flat_hash_set.h". If I hit enter to finish the completion company will helpfully insert the closing " character for me which conflicts with the one provided by smartparens. I have a video demonstrating the issue here (you can skip to about 0:20 to see the issue): https://asciinema.org/a/qIaBt8o31OgqBFyBzzonx2QIH
Is it possible to detect if the point is currently within a quoted form, and then not suggest completions with a redundant closing quote? I'm honestly not sure if this is an issue with company-c-headers or company itself. I'm far from an expert in elisp but I could try to figure this out myself with some guidance on what to look for to try to fix this.
The text was updated successfully, but these errors were encountered:
I am using smartparens, and one of the things smartparens does (which I generally) like is that after typing an opening " character a closing " is automatically added for me after the point. Suppose I'm in a C or C++ source file and I type
#include "absl/container/flat_
. The current point will be set to just after the _ character but just before the closing " character that smartparens added. The company auto completions will now beflat_hash_map.h"
andflat_hash_set.h"
. If I hit enter to finish the completion company will helpfully insert the closing " character for me which conflicts with the one provided by smartparens. I have a video demonstrating the issue here (you can skip to about 0:20 to see the issue): https://asciinema.org/a/qIaBt8o31OgqBFyBzzonx2QIHIs it possible to detect if the point is currently within a quoted form, and then not suggest completions with a redundant closing quote? I'm honestly not sure if this is an issue with company-c-headers or company itself. I'm far from an expert in elisp but I could try to figure this out myself with some guidance on what to look for to try to fix this.
The text was updated successfully, but these errors were encountered: