Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multiline comment (not box comment) #65

Open
tyru opened this issue Apr 16, 2016 · 0 comments
Open

Support multiline comment (not box comment) #65

tyru opened this issue Apr 16, 2016 · 0 comments

Comments

@tyru
Copy link
Owner

tyru commented Apr 16, 2016

Support multiline comment, like javadoc and C.

/**
 * @param i1
 * @param i2
 * @return i1 + i2
 */
public static int add(int i1, int i2) {
    return i1 + i2;
}
/*
 * i1 + i2
 */
int add(int i1, int i2) {
    return i1 + i2;
}

Options

  • start comment (e.g.: /**, /*)
  • middle comment (e.g.: *)
  • end comment (e.g.: */)
  • keep start comment line blank after comment string?
@tyru tyru changed the title Suport multiline comment (not box comment) Support multiline comment (not box comment) Apr 21, 2016
@tyru tyru mentioned this issue May 3, 2016
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant