Remove all arbitary spaces before a line in Vim

前端 未结 9 2264
感动是毒
感动是毒 2020-12-01 02:56

I\'v written a plugin where it comes to parsing a XML tag. The content inside the tag is indented and when i copy the parsed string into the file it\'s gettting like:

<
9条回答
  •  温柔的废话
    2020-12-01 03:06

    To remove initial spaces and tabs at specified line numbers (E.g. from lines 5 to 10),

    :5,10s/^\s*//
    

提交回复
热议问题