|
span.s_sheet = list(color = "cyan", fmt = double_quote_weird_name), |
|
span.w_sheet = list(color = "green", fmt = single_quote_weird_name), |
|
span.range = list(color = "yellow", fmt = single_quote_weird_name), |
|
gs4_bullets(c(v = "Range {.range {effective_range}}.")) |
|
glue("{sq_escape(sheet_name) %||% ''}{sep}{cell_range %||% ''}") |
range_read("<id>", range="Sheet Name!A1:B3")
The combination of:
- single quotes for both
effective_range and the sheet name
- black followed by yellow on a white background
Make it a little bit hard to parse this output visually.
Maybe double_quote_weird_name is better here, too?
googlesheets4/R/utils-ui.R
Lines 5 to 7 in 55cd9fd
googlesheets4/R/get_cells.R
Line 39 in 55cd9fd
googlesheets4/R/utils-cell-ranges.R
Line 17 in 55cd9fd
The combination of:
effective_rangeand the sheet nameMake it a little bit hard to parse this output visually.
Maybe
double_quote_weird_nameis better here, too?