Hi All,

I am using using TagList for ANT build files as per
http://vim.wikia.com/wiki/Using_TagList_for_ANT_build_files

To pick up targets, I am using:
--regex-ant=/^[ \t]*<[ \t]*target.*name="([^<"&]+)".*>/\1/t,target/i

The problem is this will only pick up targets where the opening tag is
all on one line. For example, it will pick up
 <target name="clean" depends="init" description="...">
but not
 <target name="clean"
      depends="init"
      description="...">

Can anyone guide me as to how I can modify the ".*" in the above
expression to deal with new line chars too?

Thanks for any assistance!

Rob
:)
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to