R-side code to implement an R editor and IDE in Komodo IDE (https://www.activestate.com/products/komodo-ide/) with the SciViews-K extension.
Note that this package is maintained minimally in order to keep code that may be useful in another context. However, RStudio and VScode with R extensions are the R editors/IDEs that you should use today. Komodo + SciViews-K/svKomodo aimed to develop a similar R IDE back in the 2000's/2010's, but its development was stopped in 2016 when RStudio gained its popularity.
You can install the released version of {svKomodo} from CRAN with:
install.packages("svKomodo")
You can also install the latest development version. Make sure you have the {remotes} R package installed:
install.packages("remotes")
Use install_github()
to install the {svKomodo} package from GitHub (source from master branch will be recompiled on your machine):
remotes::install_github("SciViews/svKomodo")
R should install all required dependencies automatically, and then it should compile and install {svKomodo}.
You can get further help about this package this way: Make the {svKomodo} package available in your R session:
library("svKomodo")
Get help about this package:
library(help = "svKomodo")
help("svKomodo-package")
For further instructions, please, refer to the help pages at https://www.sciviews.org/svKomodo/.
Please note that the svKomodo project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.