On Feb 2, 7:45 pm, Bee <[email protected]> wrote: > Is there a html css validator for vim?
Vim interfaces with whatever external program you need it to. There are several ways to do this depending on what you want to do. There's filtering, which will replace the lines in question with the output of the external app: :%!cmd There's just running the command on a file: :!cmd % There's using the file contents as stdin for a command: :w !cmd And more, depending on what you're trying to do. What exactly do you want to accomplish? -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
