R-nvim / R.nvim

Neovim plugin to edit R files
GNU General Public License v3.0
128 stars 15 forks source link

Automatically install missing packages in the current buffer #160

Closed PMassicotte closed 6 days ago

PMassicotte commented 6 days ago

This PR uses lintr to automatically install missing packages used in the current buffer. It will detect any missing packages used either as:

library(package)

or as:

package::fun()
jalvesaq commented 6 days ago

Great job again!