Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sjsyrek/jsdoc-expander
TextExpander snippets for working with JSDoc comments in JavaScript
https://github.com/sjsyrek/jsdoc-expander
Last synced: 15 days ago
JSON representation
TextExpander snippets for working with JSDoc comments in JavaScript
- Host: GitHub
- URL: https://github.com/sjsyrek/jsdoc-expander
- Owner: sjsyrek
- Created: 2015-06-18T12:49:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-18T20:27:04.000Z (over 9 years ago)
- Last Synced: 2024-10-11T20:56:33.636Z (about 1 month ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSDocExpander
## TextExpander snippets for JSDocExpand a simple abbreviation with TextExpander 5.0 to automatically insert custom JSDoc comments into your JavaScript code. [TextExpander 5.0][1] is required for these snippets to function, as they take advantage of its new JavaScript scripting features. The inserted text will look like this:
```
/**
*
* @const {string}
*/
```
The cursor is inserted after the `*` on the second line, so you can enter a description conveniently after expansion. Options are available for many common [JSDoc][2] and [Google Closure Compiler][3] tags and type expressions. There are two snippets:- `javascriptJSDoc` contains the JavaScript code that produces the text output for the snippet
- `@jsdoc` is the abbreviation you should use for the snippet itself (rename this to whatever you want)The snippet will probably not function if you try to expand the JavaScript code by itself, which runs within TextExpander's native JavaScript environment. It does not run [Apple's JavaScript for Automation][4] (JSA), which I can't yet get to work reliably. The enclosing `@jsdoc` snippet consists entirely of a nested snippet macro:
```
%snippet:javascriptJSDoc%
```You could add a `%filltop%` macro just before this (on the same line to avoid breaks) if you want more of an interface look, but I like having a preview of how the expanded text will appear. See [TextExpander Help][5] for more details.
Note that the JavaScript builds up the expansion text by creating TextExpander macros. It seems necessary to keep the percent signs (%) separate from the rest of any given text string, hence all the `'%'` strings, lest TextExpander interpret it as the beginning of a macro before your code has fully executed.
A more powerful version is possible using JSA and dialog boxes. I had envisioned offering multiple options for the output—such as for optional, required, and variable function parameters as well as Array and Object types—but this is the best I can do right now. I think it will be very handy for inserting frequently-used JSDoc tags into your code. Enjoy.
[1]: http://smilesoftware.com/TextExpander/index.html "TextExpander"
[2]: http://usejsdoc.org/index.html "JSDoc"
[3]: https://developers.google.com/closure/compiler/docs/js-for-compiler "Annotating JavaScript for the Closure Compiler"
[4]: https://developer.apple.com/library/mac/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/index.html "JavaScript for Automation Release Notes"
[5]: http://smilesoftware.com/help/TextExpander/index.html "TextExpander Help"