Jeff Axelrod
Jeff Axelrod

Reputation: 28188

Javadoc-like documentation in Google Apps Script editor?

Is there any way to access the documentation for functions directly from the Google Apps Script editor? I'd like to do so either as I'm typing the function name, as well as when looking at existing code.

For example, when examining the following line of code:

var ss = SpreadsheetApp.getActiveSpreadsheet();

I'd like to be able to hover over or right click getActiveSpreadsheet(), and be shown the appropriate documentation that describes this function's behavior.

Upvotes: 1

Views: 465

Answers (1)

Eric Koleda
Eric Koleda

Reputation: 12673

Unfortunately the Apps Script code editor doesn't have this feature, but you can file a feature request to have it added.

Upvotes: 3

Related Questions