I use Vim 7.4.521 under Kubuntu 14.04.4. I downloaded and installed Nvim-R 0.9.5 (for Vim >= 7.4.1829) via :so %. Doing the following:
$ vim somefile.R
on a file containing R code results in Vim reporting:
Nvim-R requires ... Vim >= 7.4.1829
If using Vim, it must have been compiled with both +channel and +job features.
Running this:
$ vim --version | grep "channel\|job"
returns nothing.
Do I need to download2 a newer or different version of Vim? I'd like to avoid compiling Vim from scratch ;)
1: As reported on the splash screen when starting Vim. apt-get reports version "7.4.052".
2: vim.org is down at the moment.
Nvim-Ruses jobs. Get the latest development version of Vim (currently 7.4.2031), compile and install it. Or install Neovim instead. Also, use a real package manager, don't install plugins from vimballs. You don't even want to know what those are in 2016. – Sato Katsura Jul 13 '16 at 14:44apt-get removeall existing versions of Vim before installing via git? – SabreWolfy Jul 14 '16 at 07:45vim --version. 488 < 1829, so your version is too old. Compiling Nvim-R is different to compiling Vim. – SabreWolfy Jul 15 '16 at 17:20