Skip to content

scheakur/vim-jsdocy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

jsdocy.vim

JsDocy helps you to generate comments for JsDoc. You can use this like the followings:

:JsDocyAddJsDoc

For example, if the cursor is placed on the first line of the following code and you execute :JsDocyAddJsDoc,

function foo(bar, baz, qux) {
  // some code
}

then you get the result as below.

/**
 * @param {} bar
 * @param {} baz
 * @param {} qux
 * @return {}
 */
function foo(bar, baz, qux) {
  // some code
}

About

A Vim plugin to generate JsDoc comment

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published