Is there any IDE -from the ones supporting R-, that gives access to the command history (at least to the current session\'s commands)? Or is there a way to get a (character or e
The command history() will recall the last 25 used commands, whereas history(max.show=Inf)will get back all previous ones. If you are using RStudio on top of your R distro, CTRL + UP will give you the list of all previous commands.