I'm developing and R (www.r-project.org) IDE (based on DLTK :) ); it is a simple version but i am starting yet :).
I would like to know if something similar to introducing imports in Java is supported (i have been looking for it but i have not found :( ) . An example:
In R, the system have "packages" with functions definitions. In order to use a function, you have to load de library, like this : library("myLibrary")
Imagine you are writing an R program, and press CTRL + SPACE after typing odbcCo, the completion suggest you odbcConnect(connection, . . .). Then, i would like that library(RODBC) was included at the beginning of the file when selecting the suggested proposal
I am not sure if i have explained right; i hope yes.