mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-02 07:04:33 +00:00
This PR adjusts the names of the negated style methods by moving the
`neg_` to after the property name instead of before.
This will help keep related style methods grouped together in
completions.
It also makes it a bit clearer that the negation applies to the value.
### Before
```rs
div()
.neg_mx_1()
.neg_mt_2()
```
### After
```rs
div()
.mx_neg_1()
.mt_neg_2()
```
Release Notes:
- N/A
|
||
|---|---|---|
| .. | ||
| styles | ||
| default_colors.rs | ||
| default_theme.rs | ||
| one_themes.rs | ||
| prelude.rs | ||
| registry.rs | ||
| scale.rs | ||
| schema.rs | ||
| settings.rs | ||
| styles.rs | ||
| theme.rs | ||