web-dev-qa-db-fra.com

Comment installer vim.full dans Ubuntu?

J'ai installé Ubuntu Server mais je n'ai que vim.basic?

Comment installer vim.full?

Essayé avec aptitude install vim mais il a été dit qu'il est toujours installé.

Parce que vim est un lien virtuel vers vim.basic.

20
ajsie

Essayez le package vim-nox si vous n’avez pas besoin d’interface graphique, sinon essayez vim-gnome ou vim-gtk. Il existe un certain nombre de packages vim compilés avec différents ensembles de fonctionnalités:

% apt-cache search vim | grep vim-
jvim-canna - Japanized VIM (Canna version)
jvim-doc - Documentation for jvim (Japanized VIM)
vim-addon-manager - manager of addons for the Vim editor
vim-gtk - Vi IMproved - enhanced vi editor - with GTK2 GUI
vim-latexsuite - view, edit and compile LaTeX documents from within Vim
vim-nox - Vi IMproved - enhanced vi editor
vim-scripts - plugins for vim, adding bells and whistles
vim-syntax-gtk - Syntax files to highlight GTK+ keywords in vim
vim-vimoutliner - script for building an outline editor on top of Vim
vim-common - Vi IMproved - Common files
vim-dbg - Vi IMproved - enhanced vi editor (debugging symbols)
vim-doc - Vi IMproved - HTML documentation
vim-gnome - Vi IMproved - enhanced vi editor - with GNOME2 GUI
vim-gui-common - Vi IMproved - Common GUI files
vim-runtime - Vi IMproved - Runtime files
vim-tiny - Vi IMproved - enhanced vi editor - compact version
vim-Rails - plugins for vim to allow easier editing of Rails Applications
29
nagul

C'est ce que j'installe habituellement:

Sudo apt-get install vim vim-scripts vim-doc vim-latexsuite vim-gui-common vim-gnome

Dans le passé, il y avait un paquet appelé "vim-full" ...

9
Johan

Exécutez ces commandes dans un terminal:

Sudo apt-get build-dep gnome-vim
Sudo apt-get install gnome-vim
1
ivanceras