-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Qt help view #40
Add Qt help view #40
Conversation
Thanks! Works for me. Is it possible to add search on the page (via |
I also noticed that you use GitHub Actions. Could you add something like the following to the CI? This will allow to just download the extension after CI without manual build. |
I will try to find some spare time in the next few days to check this points. |
Not sure if this is related, but a similar problem has been resolved in vscode-godot-tools.
Yeah, it would be nice. Thanks! |
"Find" works (take some time to process) when you click on the area above the view and then press |
Thanks for the info! |
6bf833f
to
b14b591
Compare
Hey @Shatur95 , I've added a search command for the Qt help, but there is a problem. The search results are links with I've added artifacts to the |
Thank you! Tested, yes, works for me. If there are so many restrictions in embedding, maybe will be better to just show all documentation in browser? |
Hey @Shatur95 , I've also add external browser support. By default the extension launch the webview inside VSCode, but you can turn this off by just set Let me know I you like it or you miss something. |
Thanks, just what I need. |
Add Qt help webview. The Impl. just use the word under the cursor (no selection!) and just use the Qt docs website https://doc.qt.io/qt-5 . The word will be attached in lowercase.
QWidget
would look like https://doc.qt.io/qt-5/qwidget.htmlCloses #39