vscode 使用 rust-analyzer 格式化代码,怎么设置 换行的宽度?

默认的宽度好像是120 个字符,感觉太宽了,分屏看写代码不方便,怎么设置 为 80 个字符?

阅读 2.5k
1 个回答

解决方法:
在cargo.toml 同级目录中添加一个叫rustfmt.toml 的配置文件,可以配置,这个配置截图

image.png

配置代码:

max_width = 80
hard_tabs = false
tab_spaces = 2
newline_style = "Auto"
use_small_heuristics = "Default"
reorder_imports = true
reorder_modules = true
remove_nested_parens = true
edition = "2018"
merge_derives = true
use_try_shorthand = false
use_field_init_shorthand = false
force_explicit_abi = true
imports_granularity = "Crate"

配置文档

推荐问题
logo
Microsoft
子站问答
访问
宣传栏