How to change encoding of all files at once with Jetbrains IDE like WebStorm

后端 未结 4 1036
野性不改
野性不改 2021-02-20 14:43

For some unknown reason, the encoding of my files has changed without me noticing for a while.

It was UTF-8 and now is windows-1252. I have res

4条回答
  •  清酒与你
    2021-02-20 15:24

    To convert the file encoding, you have to use some external tool to perform the conversion, such as iconv:

    iconv -f windows-1252 -t utf-8  > 
    

提交回复
热议问题