Vim – Command to Update Vim on Ubuntu

vim

I'm on Ubuntu 12.04 and want to know how to update Vim via the command line. What is the command to update this?

Best Answer

the best answer to this question is https://vi.stackexchange.com/a/10827/32151

and according to the linked answer, another way to doing this is using Personal Packet Archive (PPA)

add this PPA

sudo add-apt-repository ppa:jonathonf/vim

Update the package lists:

sudo apt update

install vim:

sudo apt install vim
Related Question