-
Notifications
You must be signed in to change notification settings - Fork 37
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
Second try for rowids #550
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please also add a paragraph in the description/details of the documentation, and perhaps also in https://pillar.r-lib.org/articles/extending.html ?
ctl_new_rowid_pillar.tbl <- function(controller, x, width, has_row_id, ..., title = NULL) { | ||
"!!!!DEBUG ctl_new_rowid_pillar.tbl(`v(width)`, `v(title)`)" | ||
|
||
template <- names(ctl_new_pillar(controller, vector(), width, title = title)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, let's move the new vignette section before "Body".
R/ctl_new_pillar.R
Outdated
@@ -16,6 +16,8 @@ | |||
#' implementation. | |||
#' Override this method to completely change the appearance of the pillars. | |||
#' Components are created with [new_pillar_component()] or [pillar_component()]. | |||
#' In order to customize printing of row IDs, the generic a method can be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#' In order to customize printing of row IDs, the generic a method can be | |
#' In order to customize printing of row IDs, a method can be |
Thanks! |
Closes #260.