Kevin Ushey

Results 72 issues of Kevin Ushey

So that someone could write e.g. ``` [email protected]::user/repo ``` to indicate that `gitlab-server.com` should be used as a custom host.

feature

E.g. something like: ``` remotes::install_cran("[email protected]") ``` to say "I want to install `devtools 2.1.0`, as available from the repository called `CRAN`". The repository URL would be taken by matching the...

feature

The following snippet of code fails: ```R library(R6) Base

feature

It would be handy to allow packages to register their own autocompletion routines for certain functions. A simple example might be `shiny::runExample()` -- users might write ```R shiny::runExample() ``` The...

ease-of-use

### Problem In the cargo guide, the page on dependencies (https://doc.rust-lang.org/cargo/guide/dependencies.html) describes how one can add specific versions of a couple dependencies, e.g. by editing `Cargo.toml`: ``` [package] name =...

A-documenting-cargo-itself
A-crate-dependencies
C-feature-request
Command-add

Given an R document with the code: ``` .hello.world. ``` The leading + trailing `.`s are tokenized as separate entities. I believe the use of `\b` here forces VSCode to...

bug

For example, the following is a valid identifier: `\`` But the escaped backtick is treated as the end of the identifier, and so the final backtick is its own separate...

bug
stale

This PR provides a minor optimization, that allows us to avoid the need to check the `tail` in the precious list for `R_NilValue`. This is done by ensuring that the...

Closes https://github.com/jeroen/V8/issues/150.

@yihui and I are seeing the following behavior: ``` > cat( toJSON( list(x=1, y=character(0)) ) ) { "x": 1, "y": 1 } ``` This is because [`unlist`](https://github.com/duncantl/RJSONIO/blob/master/R/json.R#L281) is used to...