Gimp.Procedure.prototype.set_documentation

function set_documentation(blurb: String, help: String, help_id: String): void {
    // Gjs wrapper for gimp_procedure_set_documentation()
}
  

blurb is used as the procedure's tooltip when represented in the UI, for example as a menu entry.

For translations of tooltips to work properly, blurb should only be marked for translation but passed to this function untranslated, for example using N_("Blurb"). GIMP will look up the translation in the textdomain registered for the plug-in.

help is a free-form text that's meant as documentation for developers of scripts and plug-ins.

Sets various documentation strings on procedure.

Since 3.0

blurb

The procedure's blurb.

help

The procedure's help text.

help_id

The procedure's help ID.