Last active
December 19, 2015 15:49
-
-
Save mislav/5979587 to your computer and use it in GitHub Desktop.
Test-drive the new vim 7.4 prerelease
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The biggest additions since 7.3: | |
- A new, faster regular expression engine. | |
- More than a thousand fixes and small improvements. | |
Once you have installed Vim 7.4a BETA you can find details about the | |
changes since Vim 7.3 with: | |
:help version-7.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp | |
wget ftp://ftp.vim.org/pub/vim/unstable/unix/vim-7.4a.tar.bz2 -O- | tar -xj | |
cd vim74a | |
sudo mkdir -p /opt/vim | |
sudo chown $USER /opt/vim | |
PATH=/usr/bin:/usr/sbin:/bin:/sbin ./configure --prefix=/opt/vim --enable-rubyinterp | grep ruby | |
make && make install | |
ln -sf /opt/vim/bin/vim /usr/local/bin/vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you're using MacVim, you can download the beta here.