ZIm/crates/assistant2/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
..
tools Trim index output (#11445) 2024-05-06 10:37:31 -07:00
ui Rust 1.78 (#11314) 2024-05-05 15:02:50 +02:00
assistant2.rs Adjust names of negated style methods (#11453) 2024-05-06 13:56:25 -04:00
assistant_settings.rs New revision of the Assistant Panel (#10870) 2024-04-23 16:23:26 -07:00
attachments.rs chore: Fix main CI after upgrade to Rust 1.78 (#11402) 2024-05-05 15:37:53 +02:00
completion_provider.rs Allow codebase search to be turned on or off within the composer for assistant2 (#11315) 2024-05-02 13:26:46 -07:00
tools.rs assistant2: Add create buffer tool (#11219) 2024-04-30 13:43:25 -04:00
ui.rs Attachment store for assistant2 (#11327) 2024-05-03 14:48:00 -07:00