Currently, the Qt: Online help seems to work for classes, but not for methods. For example, if I highlight mid in the following code:
Then select Qt: Online help, I get 404 - Page Not Found because the URL it opens is:
https://doc.qt.io/qt-5/mid.html
Whereas it should be:
https://doc.qt.io/qt-5/qstring.html#mid
I don't know how this Qt plugin works, but it obviously can't work out that URL just by looking at the highlighted text, as that doesn't include QString at all.
However, Intellisense does know exactly which method is being referred to:

Is there a way to hook in to Intellisense to get the info needed to create the correct URL?
Currently, the Qt: Online help seems to work for classes, but not for methods. For example, if I highlight mid in the following code:
Then select Qt: Online help, I get 404 - Page Not Found because the URL it opens is:
Whereas it should be:
I don't know how this Qt plugin works, but it obviously can't work out that URL just by looking at the highlighted text, as that doesn't include QString at all.
However, Intellisense does know exactly which method is being referred to:
Is there a way to hook in to Intellisense to get the info needed to create the correct URL?