summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/codeassist/iassistproposal.cpp
diff options
context:
space:
mode:
authorLeandro Melo <leandro.melo@nokia.com>2011-05-27 10:58:26 +0200
committerLeena Miettinen <riitta-leena.miettinen@nokia.com>2011-05-27 15:25:30 +0200
commit2e9931f9ae95061842681f479fc01e8730fb94b7 (patch)
tree871d3a34ec91614c9d1c1afb3b81729eada0e83b /src/plugins/texteditor/codeassist/iassistproposal.cpp
parenta078f7187224567743a136b26d181feffcab889d (diff)
downloadqt-creator-2e9931f9ae95061842681f479fc01e8730fb94b7.tar.gz
Documentation: More on code assist
Change-Id: Icd4edd9fbd2067e46b1c8933d8e9139dafba3e67 Reviewed-on: http://codereview.qt.nokia.com/183 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
Diffstat (limited to 'src/plugins/texteditor/codeassist/iassistproposal.cpp')
-rw-r--r--src/plugins/texteditor/codeassist/iassistproposal.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/plugins/texteditor/codeassist/iassistproposal.cpp b/src/plugins/texteditor/codeassist/iassistproposal.cpp
index e082f6c762..4eaa89dc6d 100644
--- a/src/plugins/texteditor/codeassist/iassistproposal.cpp
+++ b/src/plugins/texteditor/codeassist/iassistproposal.cpp
@@ -38,12 +38,16 @@ using namespace TextEditor;
\group CodeAssist
\title Code Assist for Editors
- These classes are used to provide code assist support such as completions and refactoring
- actions for editors.
+ Code assist is available in the form of completions and refactoring actions pop-ups
+ which are triggered under particular circumstances. This group contains the classes
+ used to provide such support.
Completions can be of a variety of kind like function hints, snippets, and regular
context-aware content. The later are usually represented by semantic proposals, but
- it is also possible that they are simply plain text as supported in the fake vim mode.
+ it is also possible that they are simply plain text like in the fake vim mode.
+
+ Completions also have the possibility to run asynchronously in a separate thread and
+ then not blocking the GUI. This is the default behavior.
*/
/*!