My favorite editor is Vim, so I decided to change the default editor of my ubuntu installation with the following command:
sudo update-alternatives --config editor
A prompt (with listed options) came up asking for an editor, but I noticed that it listed two flavors of Vim:
- /usr/bin/vim.basic
- /usr/bin/vim.tiny
What is the difference between the basic and tiny options?
vim.tinyis just a trimmed-down version ofvim, presumably designed as a lightweight alternative and the accepted answer lists thevimfeatures that are present invim.tiny. Combined, they seem to answer your question perfectly. Don't they? – terdon Jun 14 '14 at 18:10vim.basicis justvim, andvim.tinyis a limited version ofvim. You want to usevim.basic(orvim.gnomeif that is installed and you want the GUI version). What else do you need to know? – terdon Jun 14 '14 at 18:19vim.basicis justvimand is installed when you install thevimpackage (check withapt-file vim.basicordpkg -S /usr/bin/vim.basic). I did not answer because I considered it a duplicate and answering a duplicate is a waste of effort for everyone involved. Glad you sorted it out. – terdon Jun 14 '14 at 18:31