Difference between revisions of "Code Completion plugin"
From Code::Blocks
(Added definitions of symbols.) |
(new icon) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 3: | Line 3: | ||
{{Infobox_Plugin| | {{Infobox_Plugin| | ||
name = CodeCompletion | | name = CodeCompletion | | ||
− | logo = [[File: | + | logo = [[File:Codecompletion_icon.png]] | |
developer = | | developer = | | ||
maintainer = | | maintainer = | | ||
Line 10: | Line 10: | ||
'''CodeCompletion''' provides a symbols browser for your projects and code-completion inside the editor. During code-completion, a system of symbols is used to identify the type associated with the suggested tokens; these symbols are defined in the following table. | '''CodeCompletion''' provides a symbols browser for your projects and code-completion inside the editor. During code-completion, a system of symbols is used to identify the type associated with the suggested tokens; these symbols are defined in the following table. | ||
− | {| border="1" cellpadding="3" cellspacing="0" style="font-size: 85%; border: gray solid 1px; border-collapse: collapse; text-align: center;" | + | {| border="1" align="center" cellpadding="3" cellspacing="0" style="font-size: 85%; border: gray solid 1px; border-collapse: collapse; text-align: center;" |
|- style="background: #ececec; border: solid 1px gray;" | |- style="background: #ececec; border: solid 1px gray;" | ||
! style="width: 32%" | | ! style="width: 32%" | | ||
Line 83: | Line 83: | ||
Only C/C++ language is supported by this plugin (currently)... | Only C/C++ language is supported by this plugin (currently)... | ||
− | + | ==See also== | |
+ | Development documents: | ||
+ | * [[Code::Completion Rewrite]] | ||
+ | * [[Code Completion Design]] |
Latest revision as of 03:19, 16 February 2013
CodeCompletion provides a symbols browser for your projects and code-completion inside the editor. During code-completion, a system of symbols is used to identify the type associated with the suggested tokens; these symbols are defined in the following table.
Public | Protected | Private | Other | |
---|---|---|---|---|
Class | ||||
Constructor | ||||
Destructor | ||||
Enumeration | ||||
Function | ||||
Macro | ||||
Namespace | ||||
Preprocessor | ||||
Typedef | ||||
Variable |
Note: This is the user document of Code Completion plugin. Only C/C++ language is supported by this plugin (currently)...
See also
Development documents: