Difference between revisions of "Code Completion plugin"

From Code::Blocks
m (Centered table.)
(new icon)
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
 
{{Infobox_Plugin|
 
{{Infobox_Plugin|
 
   name = CodeCompletion |
 
   name = CodeCompletion |
   logo = [[File:Generic-plugin.png]] |
+
   logo = [[File:Codecompletion_icon.png]] |
 
   developer = |
 
   developer = |
 
   maintainer = |
 
   maintainer = |
Line 83: Line 83:
 
Only C/C++ language is supported by this plugin (currently)...
 
Only C/C++ language is supported by this plugin (currently)...
  
For development document. See [[Code::Completion Rewrite]] and [[Code Completion Design]]
+
==See also==
 +
Development documents:
 +
* [[Code::Completion Rewrite]]
 +
* [[Code Completion Design]]

Latest revision as of 03:19, 16 February 2013

CodeCompletion
Codecompletion icon.png
Developer(s):
Maintainer(s):
Version: 1.0

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 Class public.png Class protected.png Class private.png Class.png
Constructor Ctor public.png Ctor protected.png Ctor private.png
Destructor Dtor public.png Dtor protected.png Dtor private.png
Enumeration Enum public.png Enum protected.png Enum private.png Enum.png
Function Method public.png Method protected.png Method private.png
Macro Macro public.png Macro protected.png Macro private.png Macro.png
Namespace Namespace.png
Preprocessor Preproc.png
Typedef Typedef public.png Typedef protected.png Typedef private.png Typedef.png
Variable Var public.png Var protected.png Var private.png

Note: This is the user document of Code Completion plugin. Only C/C++ language is supported by this plugin (currently)...

See also

Development documents: