zed/crates/gpui_macros/src
Marshall Bowers 8871fec2a8
Adjust names of negated style methods (#11453)
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
2024-05-06 13:56:25 -04:00
..
derive_into_element.rs Fix flickering (#9012) 2024-03-11 10:45:57 +01:00
derive_render.rs
gpui_macros.rs
register_action.rs gpui-macros: Hide autogenerated action types/functions (#10417) 2024-04-11 15:38:47 +02:00
style_helpers.rs Adjust names of negated style methods (#11453) 2024-05-06 13:56:25 -04:00
test.rs