On 05/11/2011 04:57 AM, woodygar wrote:
Hi just stated to use vim as a  python ide -
how to remove numbers from .txt but leave them on for .py .pyw files

I'm not sure what you mean by this, but you can start vim with

  prompt> vim *.txt

and then execute

  :set hidden
  :argdo :%s/\d\+//g

and review that the changes are what you want/expect. You can then write all the files with

  :wa

-tim





--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to