1
rain0002009 2019-11-26 15:48:48 +08:00
prettier ?
|
2
Rwing 2019-11-26 15:53:31 +08:00
vs 有个功能叫 code cleanup
|
3
hei1000 2019-11-26 17:07:31 +08:00
写脚本?
我的一个简单的命令行, 放在脚本里面可以添加一些其他的功能, 当然了, 要利用自己的 vim/nvim 配置比如保存文件时"删除行尾多余空格" ~~~ nvim -es -c 'args ./**/*.cpp | argdo execute "normal gg=G" | update' ~~~ |
4
gwy15 2019-11-26 17:20:58 +08:00
看你啥语言了,
C 系:clang-format py:autopep8 |
5
CrazyRain0001 OP @rain0002009 看了下介绍,是 js 代码格式化的?
|
6
CrazyRain0001 OP @Rwing 没找到
|
7
Rwing 2019-11-26 17:31:58 +08:00
|
8
CrazyRain0001 OP @hei1000 自动对齐和文件格式转换感觉用脚本不好写
|
9
CrazyRain0001 OP @Rwing 好吧~看了下貌似 vs2019 的 c#才支持的
>For C# code files, Visual Studio 2019 has a Code Cleanup button at the bottom of the editor (keyboard: Ctrl+K, Ctrl+E) to apply code styles from an EditorConfig file or from the Code Style options page. If an .editorconfig file exists for the project, those are the settings that take precedence. |
10
hei1000 2019-11-26 17:51:44 +08:00
@CrazyRain0001 #8
看我上面"normal gg=G"就是自动对齐的 格式转换的话利用 iconv 之类的命令转换, 不过貌似 iconv 得提供源 Encoding, 你先获取一下, 全都放到脚本里面就行了 |