diff options
author | Neil <nyamatongwe@gmail.com> | 2013-11-09 14:33:54 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-11-09 14:33:54 +1100 |
commit | 527e4b1244ae550b56fb6d59c75a5f2e49e32739 (patch) | |
tree | 2f0b0c521277aabfc5934ecb2089b75f096eb48a | |
parent | 4f227a1f818a78ffedd780a860b5538a107957df (diff) | |
download | scintilla-mirror-527e4b1244ae550b56fb6d59c75a5f2e49e32739.tar.gz |
Note limitation on Qt.
-rw-r--r-- | doc/ScintillaDoc.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 77473da7c..e5bf32e4f 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -82,7 +82,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 29 September 2013 NH</p> + <p>Last edited 9 November 2013 NH</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -4413,6 +4413,8 @@ struct Sci_TextToFind { There is some interaction between call tips and autocompletion lists in that showing a call tip cancels any active autocompletion list, and vice versa.</p> + <p>Call tips are not implemented on Qt.</p> + <p>Call tips can highlight part of the text within them. You could use this to highlight the current argument to a function by counting the number of commas (or whatever separator your language uses). See <code>SciTEBase::CharAdded()</code> in <code>SciTEBase.cxx</code> for an |