I am following the inspiring example here to setup Vim
for R
development. One difference is that I am running Vim and R on a remote server via ssh
session. And this ssh
starts byobu
, which has tmux
started automatically whenever I login. What I want is to make an Vim-R-Dev
command/alias so that:
After logging in with the ssh
and tmux
is already running, I can type Vim-R-Dev
to open up a window with panes look like in the attached image:
Illustration of sending R code from several vim viewports (in middle) to an R session (on top right). The vim session can run on a local computer, while the R session can run on the same or a remote system. The snapshot also illustrates the omni completion utility of the vim-r-plugin (purple box), viewing of an R function help document in a separate tmux pane (bottom right) and the NERDTree file browser (left).
After a while of fumbling with Vim and R, I decided to quit this approach. My feeling was that the combination is not mature enough for production. So I tried to find and found EMACS + ESS. Yes, emacs is the rival to Vim as a programmer/geek editor. And it seems I am a traitor of Vim jump to Emacs when the two are at war :-) It doesn't have to be that way.
At first I installed emacs and ess plugin/package and tried to learn the basics. I was very happy about how ESS is much more mature than vimR. And the way emacs works with packages and configuration make me much more happy than when I used Vim. This is partly because I have some basic background and was willing to deal with ELISP, the LISP programming language variant that is made for Emacs. An advice for some one have Vim skills though: You'd better off install
Evil
package from the beginning so you have the power of quick editing in Vim but the whole pack of other wonderful things, i.e. robustness, fine customization, in-place documentation. I have discussed many things about Emacs and ESS here on stackoverflow.com and at emacs.stackexchange.com too. The essential setup for R programmer is:Emacs, ESS, Evil, Helm*, auto-complete, auctex, polymode, r-autoyas
. Following are full list of additional packages that I installed. The one that allows me to edit and run code on remote server is calledtramp
with X forwarding. I will post more on this if there are requests.