Hello,
does anyone know if there exists the possibility to auto-complete the values of function arguments via tab?
Let's say I have a R-function like this:
my_func <- function(x1 = c("value1", "value2")){}
Then in my R environment i want to enter: my_func(x1 = ...
And when I enter there the auto completion should pop up with the values.