Am 05.08.2013 23:58, schrieb Ben Fritz:
On Monday, August 5, 2013 3:03:57 PM UTC-5, Andrew Ray wrote:
Have you tried a recent version of Vim?

The indent plugin for HTML has been replaced.

<div>
<p>
<span></span>
</p>
</div>

does not indent correctly, macvim snapshot 69

I'm still using the OLD script, and that snippet indents fine for me:

<div>
   <p>
   <span></span>
   </p>
</div>

Same for the new script.

Unless you expect the <span> to be indented further? I don't really care 
because sometimes I do:

<div>
   <p>some text
   goes <span>here</span>
   like this</p>
</div>

With
    :let html_indent_inctags = 'p,span'
in your vimrc (span not actually needed in the example), this becomes

<div>
   <p>some text
      goes <span>here</span>
      like this</p>
</div>

When used during session you also need to do
    :call HtmlIndent_CheckUserSettings()

(as explained at  :h ft-html-indent   (available in newer Vims))

or even:

<div>
   <p>some text
   goes <span>here</span>
   like this
</div> <!--I don't actually omit the </p> anymore but I did long ago-->

But I guess that's a valid complaint.

Valid complaint.  I'll try to add support for optional end tags.

--
Andy

--
--
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

--- You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to