Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want many this kind of changes

"\includegraphics{all.png}" --> "\includegraphics[width=\linewidth]{all.png}"

without Sed but Vim. When I do it, I always replace the buffer by accident with something like space so wasting a lot of keys. How can I do it fast?

Smallest amount of keys wins!

Start inside Vim: getting the matches to buffers

:grep -r "includegraphics" Sections/*

share|improve this question

2 Answers

up vote 3 down vote accepted

A flexible way of performing some actions in a group of files using Vim is to collect the list of their names into the argument list (see :help arglist), and then iterate through it executing the desired command.

In order to do the first step, use commands :args, :argadd, and :argdelete. For instance, to set the argument list to the names of all files that have the .tex extension in the current directory and its subdirectories, issue

:args ./**/*.tex

To perform the second step, use the :argdo command:

:argdo %s/\\includegraphics\zs\ze{all.png}/[width=\\linewidth]/g
share|improve this answer

Replace in all buffers

:bufdo %s/\\includegraphics\{all\.png\}/\includegraphics[width=\linewidth]{all.png}/ge

share|improve this answer
Why are you escaping {? It is not perl, { has no special meaning by default (not in very-magic mode, :h /\v), but \{ does. – ZyX Nov 22 '12 at 4:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.