Konrad Rudolph

Results 70 issues of Konrad Rudolph

This PR adds an `ftplugin` that inherits the Groovy settings (in particular the `commentstring` setting). It also moves some existing filetype settings from the syntax file into the more appropriate...

Currently Ollama is writing into a directory in the user home, `~/.ollama`. However, the user home directory should be under the *user’s* control, and applications may only write into it...

feature request

Currently every module import will read several environment variables. This is wasteful, and probably also not intended by the user (particularly for `R_BOX_PATH`). The behaviour should be changed to only...

⚙️ enhancement

Add vignette/article about ‘box’ development, describing how to install the development version, how to build ‘box’ using the Makefile, etc.; and link it from the README file. See #321 for...

🚀 ready
🧹 maintenance
📚 documentation

### MWE ```r # foo.r #' This is a test #' @export bar = function () 'hi' ``` ``` box::use(./foo[baz = bar]) box::help(baz) ``` ### Observed result > ``` >...

⚙️ enhancement

This PR is a WIP implementation of unscoped module names. For now, the syntax for specifying an unscoped module name `xyz` is `box::use(mod(xyz))`. `mod(…)` disambiguates between package and module names,...

🛠 work in progress
✨ new feature

### Error description MWE: ```bash $ tree mwe mwe ├── mod.r └── mwe.r ``` ### `mwe/mod.r` ```r #' @export run_sqrt Error in { : > task 1 failed - "...

⚠️ bug

See [the blog post](https://json.blog/2023/01/21/delimited-files-are.html) and [the discussion it triggered](https://www.reddit.com/r/rstats/comments/10imhat/delimited_files_are_hell_a_comparison_of_methods/). Reprex: ```r > vroom::vroom('x.csv', show_col_types = FALSE) # A tibble: 0 × 4 # … with 4 variables: A , B...

bug

Rig has a subcommand `rig run` to run a specific version of `R` with arguments. It would be great if there was a similar way of running `Rscript`, e.g.: ```bash...

feature