Reputation: 21
when I program in java using Netbeans I can see the available functions by pressing "." after a variable. for example: string s; s. (charAt(),concat(),contains(),etc)
is there any way to do the same in code blocks?
Upvotes: 2
Views: 3279
Reputation: 1697
I'm using 'codeblocks-16.01' and its giving me the available functions list automatically by pressing "." after variable. You can also use 'Ctrl + Space' key if the available functions list is not shown automatically. Please check the attached screenshot and its working for me with 'Windows 8.1'.
Update: Make sure that 'code completion' option is enable.
Settings -> Editor -> Editor settings -> Code completion
Upvotes: 2
Reputation: 23884
Yes
Also make sure:
Setting > Editor > code completion
If still does not work search for Plugins on the main site
if you are on UNIX-like machine like Ubuntu you can
sudo apt-cache search codeblocks
libpath-dispatcher-perl - flexible and extensible dispatcher module
libcodeblocks0 - Code::Blocks shared libraries
codeblocks - Code::Blocks integrated development environment (IDE)
codeblocks-dbg - Code::Blocks debugging libraries
libwxsmithlib0 - wxSmith shared library (Code::Blocks plugin for RAD GUI editing)
codeblocks-contrib - contrib plugins for Code::Blocks IDE
codeblocks-dev - Code::Blocks development libraries (SDK)
codeblocks-contrib-dbg - Debugging libraries for the Code::Blocks contrib plugins
wxsmith-dev - wxSmith development files (libraries)
codeblocks-common - common files for Code::Blocks IDE
codeblocks-contrib-common - common files for the contrib plugins for Code::Blocks IDE
codeblocks-headers - Code::Blocks development headers (SDK)
wxsmith-headers - wxSmith development files (headers)
codeblocks-wxcontrib-headers - Code::Blocks development headers for wxContribItems
codeblocks-libwxcontrib0 - Code::Blocks shared libraries for wxContribItems
codeblocks-wxcontrib-dev - Code::Blocks development libraries for wxContribItems
And install what you want
Upvotes: 1