caw.vim icon indicating copy to clipboard operation
caw.vim copied to clipboard

Create template comment from arguments and return value (like Eclipse's javadoc)

Open tyru opened this issue 9 years ago • 0 comments

For below static method,

public static int add(int i1, int i2) {
    return i1 + i2;
}

Create template comment like below:

/**
 * @param i1
 * @param i2
 * @return 
 */

Goal

  • [ ] Can create template comment string
  • [ ] Can also add template comment string to existing method/function comment

tyru avatar Apr 16 '16 16:04 tyru