Describe the bug
In general, RProvider replaces "." in function names with "_". It does not do this for packages/libraries. For example, in the below example I think that it should be open RProvider.data_table instead of open RProvider.data.table so that the function name data_table is consistent with the library name.
It will also help discoverability, because right now RProvider.data does not bring up data.table as an option.
You have to type RProvider.data. and then autocomplete suggests table.
Describe the bug In general, RProvider replaces "." in function names with "_". It does not do this for packages/libraries. For example, in the below example I think that it should be
open RProvider.data_table
instead ofopen RProvider.data.table
so that the function namedata_table
is consistent with the library name.It will also help discoverability, because right now
RProvider.data
does not bring updata.table
as an option.You have to type
RProvider.data.
and then autocomplete suggeststable
.