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
{{ message }}
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.
git clone https://github.com/thomasjo/atom-ide-cpp.git
cd atom-ide-cpp
apm link .
apm install
Open node_modules/atom-languageclient/build/lib/auto-languageclient.js. Add this hack to getSuggestions:
async getSuggestions(request) {
if (request.prefix === ';') {
return;
}
// rest of function here
It seems like this is an issue in clangd considering the very lightweight nature of this package. I built clangd from source using current svn trunk and still had this issue.
Still have the same problem for when expanding curly brackets though (e.g. for a function def). Instead of making a new line, it autocompletes into the curly bracket.
Adapting the workaround to check for '{' prefix doesn't work either, because Atom generates both {} at the same time.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is annoying, as I want to press
;
then enter to start a new line, but it instead autocompletesThe text was updated successfully, but these errors were encountered: