Discussion:
SCI_CALLTIPCANCEL when going to the next/previous line
Markus Nißl
2013-12-11 11:05:20 UTC
Permalink
Hello,

the documentation for SCI_CALLTIPCANCEL reads: "This message cancels any
displayed call tip. Scintilla will also cancel call tips for you if you use
any keyboard commands that are not compatible with editing the argument
list of a function."

Is there a reason why the call tip is cancelled automatically when going to
the next/previous line?

The argument list of a function can be spread over multiple lines.

Markus
--
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scintilla-interest+***@googlegroups.com.
To post to this group, send email to scintilla-***@googlegroups.com.
Visit this group at http://groups.google.com/group/scintilla-interest.
For more options, visit https://groups.google.com/groups/opt_out.
Neil Hodgson
2013-12-11 21:53:37 UTC
Permalink
Is there a reason why the call tip is cancelled automatically when going to the next/previous line?
The argument list of a function can be spread over multiple lines.
Call tips that are too persistent must be avoided. Scintilla does not understand the call syntax of languages. Most calls are on one line so that is the heuristic Scintilla uses. It is up to the application to build on this basic functionality if it wants something more.

Neil
--
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scintilla-interest+***@googlegroups.com.
To post to this group, send email to scintilla-***@googlegroups.com.
Visit this group at http://groups.google.com/group/scintilla-interest.
For more options, visit https://groups.google.com/groups/opt_out.
Loading...