¿Cómo instalar vim.full en Ubuntu?

20

¿He instalado Ubuntu Server pero solo tengo vim.basic?

¿Cómo lo instalo vim.full?

Intenté aptitude install vimpero decía que siempre está instalado.

Porque vimes un enlace suave a vim.basic.

ajsie
fuente

Respuestas:

29

Pruebe el vim-noxpaquete si no necesita una GUI, de lo contrario, pruebe vim-gnomeo vim-gtk. Hay varios paquetes vim compilados con diferentes conjuntos de características:

% 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
nagul
fuente
8
Puede usar apt-cache search -n vim para buscar solo nombres de paquetes en lugar de canalizar la salida en grep
Sam
Como señaló @Johan (pero para hacerlo más obvio) en algunas versiones anteriores de Ubuntu había un paquete llamado vim-full que podía instalarse.
Kaleb Pederson
Después, es posible que deba cambiar el enlace de /usr/bin/vim.tiny a /usr/bin/vim.full Use whereis vim para obtener más información
usuario119591
9

Esto es lo que suelo instalar:

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

En el pasado, solía haber un paquete llamado "vim-full" ...

Johan
fuente
1

Ejecute estos comandos en una terminal:

sudo apt-get build-dep gnome-vim
sudo apt-get install gnome-vim
ivanceras
fuente