-
Notifications
You must be signed in to change notification settings - Fork 235
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
Make tags start at beginning of line #235
Comments
depends how you want Rstudio has and which is how i would want it... if you suggest to leave out the whole #' part and just start the line with @tag, then i disagree as it would no longer run on non roxygen enabled thingies and would effect all roxygen packages my guesstimates is that if you would only allow: #' @tag as valid syntax not much will change, as the tag in the middle of a comment makes very little sense unless i completely misunderstood your point |
ugh, this has made my stuff quite a lot uglier. before i had heaps of aliases like this (which RStudio colored correctly) #' @export @name repr_*.vector
repr_html.integer <- repr_html.logical
#' @export @name repr_*.vector
repr_html.complex <- repr_html.logical
#' @export @name repr_*.vector
repr_html.numeric <- repr_html.logical
#' @export @name repr_*.vector
repr_html.factor <- repr_html.logical
#' @export @name repr_*.vector
repr_html.character <- repr_html.logical now i need to do: #' @name repr_*.vector
#' @export
repr_html.integer <- repr_html.logical
#' @name repr_*.vector
#' @export
repr_html.complex <- repr_html.logical
#' @name repr_*.vector
#' @export
repr_html.numeric <- repr_html.logical
#' @name repr_*.vector
#' @export
repr_html.factor <- repr_html.logical
#' @name repr_*.vector
#' @export
repr_html.character <- repr_html.logical can you re-allow |
How much existing code would this affect?
The text was updated successfully, but these errors were encountered: