<0xEF> character showing up in files. How to remove them?

后端 未结 13 1106
甜味超标
甜味超标 2020-11-29 18:08

I am doing compressing of JavaScript files and the compressor is complaining that my files have  character in them.

How can I search for these cha

13条回答
  •  春和景丽
    2020-11-29 18:32

    I've used vimgrep for this

    :vim "[\uFEFF]" *
    

    also normal vim search command

    /[\uFEFF]
    

提交回复
热议问题