vim command does not work

18,822

Yes, it comes by default. Your mistake is that you think you should type vim to launch it. Just type vim and press Tab, and you will get the command vim.tiny, which is the correct command.

If you need to run VIM by vim command, you should install vim package:

sudo apt-get install vim

You can read more about differences between them in What features does vim-tiny have?

Share:
18,822

Related videos on Youtube

faizal
Author by

faizal

Updated on September 18, 2022

Comments

  • faizal
    faizal over 1 year

    I am trying to open vim on my Ubuntu 14.04 64 bit by entering the command in the terminal :

    vim
    

    But i get the response :

    The program 'vim' can be found in the following packages:
     * vim
     * vim-gnome
     * vim-tiny
     * vim-athena
     * vim-gtk
     * vim-nox
    Try: sudo apt-get install <selected package>
    

    But i assume( wrongly?) that vim comes by default in the distro. I confirm this by checking the installed packages :

    dpkg --get-selections | grep -v deinstall > ~/Desktop/packages
    

    It lists vim-common and vim-tiny.

    So why doesn't vim open up? On the other hand, if i enter the command vi, it opens up vim in vi compatible mode.

  • faizal
    faizal over 9 years
    Interestingly, the vi command used to open up vim in compatibility mode. Now after installing vim, the vim command works, but vi and vim.tiny now opens up the newly installed vim as well. I guess i have lost the default vi and vim.tiny editors that came with the Ubuntu distro.
  • grantbow
    grantbow over 9 years
    default update-alternatives command modifies symbolic links in /etc/alternatives. The way the packages install by default might have changed.
  • neuronet
    neuronet almost 8 years
    This begs the question...why is it like this? Or, more briefly...WTF?