Showing posts with label vim. Show all posts
Showing posts with label vim. Show all posts

Nov 27, 2010

Busqueda y remplazo en VIM

Como buscar y remplazar texto con VIM Editor

:%s/foo/bar/g
Busca cada ocurrencia de 'foo', y la remplaza con 'bar'.

:%s/foo/bar/gc
Busca cada 'foo' y lo remplaza por 'bar', solicitando confirmacion.

Para mas informacion leete aca Link to Doc

Sep 20, 2010

Vim Option

Create un archivo llamado .vimrc en tu home

cat >> ~/.vimrc
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set smarttab
set smartindent
set number
syntax on

Apreta CTRL+D

Cuando quieras pegar en un archivo abierto con el vim y se ves que la indentacion sale mal proba con esto
vim file.x
:set paste
"Pega la informacion que queres "
:set nopaste
:wq


Si queres ver en mas detalle fijate en vim options