Vim indent xml file

后端 未结 9 1787
北恋
北恋 2020-12-07 08:05

I am learning Vim but I thought this was a simple task but I cannot get it to work. I have browser SO but the solutions are not working for me.

I am trying to correc

9条回答
  •  时光取名叫无心
    2020-12-07 08:24

    I like Berei's answer. However, I think the following is a little more flexible in that you don't have to alter your vimrc file. Plus it is easier to format select portions of the XML file (something I happen to do a lot).

    First, highlight the XML you want to format.

    Then, in normal mode, type ! xmllint --format -

    Your command-line at the bottom will look like this:

    :'<,'>!xmllint --format -

    Then hit enter.

    Technical Explanation

    The selected text is sent to the xmllint command, then --format'ed, and the results of xmllint are placed over your selected text in vim. The - at the end of the command is for receiving standard input - which, in this case, is the selected text that vim sends to xmllint.

提交回复
热议问题