C ++ code :: Autocomplete lock does not work

I recently started learning C ++ using Code :: Blocks. When I first started using it, autocomplete worked fine, but now it's not for some reason. What I mean by autocomplete is:

#include <iostream> using namespace std; int main(){ int test; } 

If I typed "te" (without the quotes), I would not get a field that has my variable name in it. Any help would be appreciated.

+5
source share
2 answers

Disabling SmartSense (settings / editor / code completion) may solve the problem. With SmartSense processing (default), partial shutdown.

+6
source

Check the settings. Settings> Editor> General Settings> Editor Settings> Code Completion> Check [Code Completion]

0
source

Source: https://habr.com/ru/post/1213011/


All Articles