nvimcom-package: Allow the communication between Nvim and R

Description Author(s) See Also

Description

This package provides a TCP/IP server to allow the communication between R and Nvim-R. It also has some functions called by the plugin.

The nvimcom.verbose option controls the amount of debugging information printed on R Console. Its default value is 0. If the value is 1, the package version will be output on startup. If the value is 2, the time required to update the Object Browser will be printed. This is useful if you suspect that R is noticeably slower when the Object Browser is open in the Nvim-R plugin. Higher values, up to 4, will make the package print information verbosely which is useful only if you want to either fix a bug or understand how nvimcom works.

Below is an example of how to load nvimcom in your ~/.Rprofile:

1
2
3
4
5
6
7
8
    if(interactive()){
        if(Sys.getenv("NVIMR_TMPDIR") != ""){
            options(nvimcom.verbose = 1)
            library(nvimcom)
        }
    }

  

Author(s)

Jakson Alves de Aquino jalvesaq@gmail.com

See Also

Startup


jalvesaq/nvimcom documentation built on May 18, 2019, 11:19 a.m.