I am working with Ubuntu
- Server and Desktop
and both are based with the 18.04
version
I need work with vim
- by default it is installed in Server - it has the 8.0.1453
version.
But in the Desktop is not installed, therefore for the Desktop I did the following:
- sudo apt update
- sudo apt upgrade
- sudo apt install vim
All ok, Vim is installed how is expected but again it is based for the 8.0.1453
version.
Even if in the Server I do
- sudo apt update
- sudo apt upgrade
Nothing to update but Vim
remains with the 8.0.1453
version
I am confused because in Vim - Download page has the following note:
Version
Vim 8.2 is the latest stable version. It is highly recommended, many bugs have been fixed since previous versions.
Therefore from 8.0.1453
to 8.2
there is a considerable difference between the releases.
I am assuming that I should do a reference for a special 'repository' (I had this experience through MySQL
), which one? and from where I should take that 'official' reference?
brew
for installing latest version of vim. You can also build from source or use a third-party PPA. – Ravexina Apr 09 '20 at 13:45jonathonf/vim
PPA should have the new version. – muru Apr 09 '20 at 13:50Unofficial package for Vim
... therefore is safe work around there? – Manuel Jordan Apr 09 '20 at 14:10