mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
support expand.color setting in cargo config
This commit is contained in:
parent
93c24c275d
commit
2ad08111b2
4 changed files with 52 additions and 19 deletions
13
README.md
13
README.md
|
@ -107,8 +107,9 @@ To expand a specific module or type or function only:
|
|||
## Configuration
|
||||
|
||||
The cargo expand command reads the `[expand]` section of $CARGO_HOME/config if
|
||||
there is one (usually ~/.cargo/config). Currently the only configuration option
|
||||
is the syntax highlighting theme.
|
||||
there is one (usually ~/.cargo/config).
|
||||
|
||||
Set the default syntax highlighting theme with the `theme` setting:
|
||||
|
||||
```toml
|
||||
[expand]
|
||||
|
@ -118,6 +119,14 @@ theme = "TwoDark"
|
|||
Run `cargo expand --themes` to print a list of available themes. Use `theme =
|
||||
"none"` to disable coloring.
|
||||
|
||||
Change the default coloring disposition (normally `auto`) with the `color`
|
||||
setting:
|
||||
|
||||
```toml
|
||||
[expand]
|
||||
color = "always"
|
||||
```
|
||||
|
||||
## Disclaimer
|
||||
|
||||
Be aware that macro expansion to text is a lossy process. This is a debugging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue