Calltips does not show in editor

Issue #37 closed
M. Gronle created an issue

When typing a command in an editor or the command line, the calltip does only appear at the second argument of a function. This bug has already been reported to the mailing list of QScintilla.

A first workaround is to add the lines

if (path.endsWith(wsep))
{
    path.chop(wsep.length());
}

before path.append('('); in qsciapis.cpp, line 702.

Comments (4)

  1. Log in to comment