mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 09:17:50 +08:00
994 B
994 B
title |
---|
Documentation |
To provide different kinds of documentation support (tooltips on Ctrl-hover, quick documentation popup etc.), the plugin needs to provide an implementation of the
DocumentationProvider
interface and register it in the lang.documentationProvider
extension point.
A standard base class for such implementations is available in the class
AbstractDocumentationProvider.
Example: DocumentationProvider for Properties language plugin
The getQuickNavigateInfo()
method returns the text to be displayed when the user holds the mouse over an element with Ctrl
pressed.