JohnADawson

Results 6 issues of JohnADawson

The documentation for `hint` states > With "short" names, Tridactyl will generate short hints that are never prefixes of each other. https://github.com/tridactyl/tridactyl/blob/master/src/excmds.ts#L5226-L5227 That is false. On the page https://pak.r-lib.org/reference/pak.html ![Image](https://github.com/user-attachments/assets/66e8a0b7-46a3-4d96-a5d4-2ac71baf4964)...

When an application is bookmarked and restored selectizeInputs can lose their values. An example follows. ```R ui

```R graph ggplot2::ggplot(ggplot2::aes(.data$x, .data$y)) + ggplot2::geom_path() + ggplot2::geom_point() + ggplot2::coord_cartesian(c(0., 2.), c(0., 2.), expand = FALSE) ``` ![Image](https://github.com/user-attachments/assets/759f3ec7-2515-452e-aac1-5b3d801b3333) Write an XLSX file with this graph: ```R workbook sessionInfo() R version...

Draw an L-shaped path from (1., 2.e5) through (1., 1.) to (2., 1.). ```R graph ggplot2::ggplot(ggplot2::aes(.data$x, .data$y)) + ggplot2::geom_path() + ggplot2::coord_cartesian(c(0., 3.), c(0., 3.)) ``` As expected, ggplot2 produces the...

Minor breaks ought to be evenly spaced, but in the following example they are not, because 10 minor breaks are put between 0 and the left limit, instead of the...