zed/crates/copilot/src
Marshall Bowers f658af5903
Make border methods always require an explicit width (#11450)
This PR makes the `border` methods require an explicit width instead of
defaulting to 1px.

This breaks convention with Tailwind, but it makes GPUI more consistent
with itself. We already have an edge case where the parameterized method
had to be named `border_width`, since `border` was taken up by an alias
for the 1px variant.

### Before

```rs
div()
    .border()
    .border_t()
    .border_r()
    .border_b()
    .border_l()
    .border_width(px(7.))
```

### After

```rs
div()
    .border_1()
    .border_t_1()
    .border_r_1()
    .border_b_1()
    .border_l_1()
    .border(px(7.))
```

Release Notes:

- N/A
2024-05-06 13:22:47 -04:00
..
copilot.rs Use lowercased language name as language id fallback (#11412) 2024-05-05 22:27:18 +03:00
copilot_completion_provider.rs Respect LSP completion triggers when copilot suggestion is on (#11401) 2024-05-05 13:01:52 +03:00
request.rs Copilot: handle "ok" status message when no user is set (#8116) 2024-02-21 11:39:43 +01:00
sign_in.rs Make border methods always require an explicit width (#11450) 2024-05-06 13:22:47 -04:00