Deleting form feed ^L characters

前端 未结 1 1718
长情又很酷
长情又很酷 2021-02-15 16:00

How to delete all form feed characters (represented by ^L) in GVim on Windows?

1条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-15 16:31

    :%s/^L//g
    

    will do it. Enter the ^L using ctrl-V ctrl-L

    Here's a guide to basic search/replace using Vim.

    0 讨论(0)
提交回复
热议问题