@phoenix-plugin-registry/jsdoc.smartcomment
v0.0.4
Published
Generates JS Doc comment, helps with hinting of type inside comment
Downloads
2
Readme
Brackets-SmartComment
Generates JS Doc comment helps with the hinting of types and tags inside comment
Generate doc comment for js functions, classes, constants, property etc
- Start typing /**
- One hint will pop-up
- Insert hint (this will generate doc comment)
example Generating comment for function
In case of function this is taking care of parameters name, number of parameters, return statement etc
/**
*
* @param {[[type]]} template [[Description]]
* @param {[[type]]} params [[Description]]
* @param {[[type]]} isReturnSt [[Description]]
* @return {[[type]]} [[Description]]
*/
Navigate inside comment
- Bring your cursor inside comment
- Press tab (It will select next item wrapped in square brackets i.e. [[Description]])
- Inspired by https://github.com/wikunia/brackets-funcdocr
- This is a great extension which documents functions and supports multiple languages Note:- Together these extensions may behave wrong According to me, For Js language you can use this extension for others FuncDocr is the right choice
Hints inside comment
- Select type by pressing tab, remove it and press ctr+space
- Tag hints, tag hints will pop up on pressing @
- The description is also available on selecting a tag
Hints
Delete Generated Doc
- If generated doc comment is not useful then Press Ctrl+Alt+A
- It will select the whole comment, Now you remove that
- Still, you will be able to use the tag and type hints
Workflow
Known Issues
- Indentation issue in generated Comment
- Set Cursor at more useful position
TODO Items
- Check comment on the fly and give errors to the user in real-time
- Help user In generating Docs for his project
- Better Hint Experience And Help more in editing generated comment