parent
b391f5615b
commit
c46137e40d
5 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
# syntax = docker/dockerfile:1.2
|
# syntax = docker/dockerfile:1.2
|
||||||
|
|
||||||
FROM rust:1.72-bullseye as builder
|
FROM rust:1.73-bullseye as builder
|
||||||
WORKDIR app
|
WORKDIR app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
|
@ -1427,7 +1427,7 @@ fn test_autoindent_block_mode_without_original_indent_columns(cx: &mut AppContex
|
||||||
// Insert the block at column zero. The entire block is indented
|
// Insert the block at column zero. The entire block is indented
|
||||||
// so that the first line matches the previous line's indentation.
|
// so that the first line matches the previous line's indentation.
|
||||||
buffer.edit(
|
buffer.edit(
|
||||||
[(Point::new(2, 0)..Point::new(2, 0), inserted_text.clone())],
|
[(Point::new(2, 0)..Point::new(2, 0), inserted_text)],
|
||||||
Some(AutoindentMode::Block {
|
Some(AutoindentMode::Block {
|
||||||
original_indent_columns: original_indent_columns.clone(),
|
original_indent_columns: original_indent_columns.clone(),
|
||||||
}),
|
}),
|
||||||
|
|
|
@ -135,7 +135,7 @@ impl ListHeader {
|
||||||
.size(IconSize::Small)
|
.size(IconSize::Small)
|
||||||
}))
|
}))
|
||||||
.child(
|
.child(
|
||||||
Label::new(self.label.clone())
|
Label::new(self.label)
|
||||||
.color(LabelColor::Muted)
|
.color(LabelColor::Muted)
|
||||||
.size(LabelSize::Small),
|
.size(LabelSize::Small),
|
||||||
),
|
),
|
||||||
|
@ -191,7 +191,7 @@ impl ListSubHeader {
|
||||||
.size(IconSize::Small)
|
.size(IconSize::Small)
|
||||||
}))
|
}))
|
||||||
.child(
|
.child(
|
||||||
Label::new(self.label.clone())
|
Label::new(self.label)
|
||||||
.color(LabelColor::Muted)
|
.color(LabelColor::Muted)
|
||||||
.size(LabelSize::Small),
|
.size(LabelSize::Small),
|
||||||
),
|
),
|
||||||
|
|
|
@ -27,7 +27,7 @@ impl Details {
|
||||||
.gap_0p5()
|
.gap_0p5()
|
||||||
.text_xs()
|
.text_xs()
|
||||||
.text_color(theme.lowest.base.default.foreground)
|
.text_color(theme.lowest.base.default.foreground)
|
||||||
.child(self.text.clone())
|
.child(self.text)
|
||||||
.children(self.meta.map(|m| m))
|
.children(self.meta.map(|m| m))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.72.1"
|
channel = "1.73"
|
||||||
components = [ "rustfmt" ]
|
components = [ "rustfmt" ]
|
||||||
targets = [ "x86_64-apple-darwin", "aarch64-apple-darwin", "wasm32-wasi" ]
|
targets = [ "x86_64-apple-darwin", "aarch64-apple-darwin", "wasm32-wasi" ]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue