aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/r_language_server.lua
Commit message (Collapse)AuthorAgeFilesLines
* docs: add deprecation notice to lua/lspconfig/configs #4189Justin M. Keyes2025-11-151-0/+7
|
* refactor: replace vim.loop with vim.uv #3703v2.0.0Chris Bandy2025-04-101-1/+1
| | | | | | The former is deprecated in neovim 0.10. Remove the check added in 9b89ba5f158f73779cd58d0bb2783dfb40b28b0e. See: https://github.com/neovim/neovim/blob/v0.10.0/runtime/doc/deprecated.txt#L55
* feat(r_language_server): add quarto filetype (#3617)mutlusun2025-02-141-1/+1
| | | | | | | | | | | [Quarto](https://quarto.org/) is a (more or less new) scientific and technical publishing system. There is also a [quarto filetype](https://github.com/neovim/neovim/blob/master/runtime/ftplugin/quarto.vim) which is very similar to [rmarkdown](https://rmarkdown.rstudio.com/) but has some extensions. The quarto filetype can also be used with python and julia. The r_language_server detects code chunks / blocks that use the R programming language and runs only on them.
* refactor: deprecate util.find_git_ancestordundargoc2024-12-141-3/+1
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* refactor: replace all instances of vim.uv with vim.loopdundargoc2024-12-021-1/+1
| | | | | We still support neovim 0.9 currently, so we can't use vim.uv. Also add a check so we don't accidentally reintroduce it.
* refactor(docs): drop redundant default_config #3398Justin M. Keyes2024-10-241-3/+0
| | | | | | | Problem: default_config duplicated in `docs` items. Solution: delete it. docgen autogenerates this now.
* refactor: replace deprecated vim.loop with vim.uvdundargoc2024-10-021-1/+1
|
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-0/+28
Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.