heavenshell / vim-jsdoc

Generate JSDoc to your JavaScript code.
BSD 3-Clause "New" or "Revised" License
452 stars 44 forks source link

fix unbalanced parens in arrow regex #52

Closed davidosomething closed 8 years ago

davidosomething commented 8 years ago

pretty sure this one parens needs to be escaped,

currently, for me at least,

module.exports = (e) => {
};

documents as

/**
 * @param e)
 */
module.exports = (e) => {
};

There's an unescape parens there, so I tweaked it a bit. Let me know if it checks out for you.

heavenshell commented 8 years ago

@davidosomething Thx. Still busy now. Please wait a while :bow: I'll look into your Pull Requests later...

heavenshell commented 8 years ago

Fix conflict. Thank you!