mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-29 21:49:33 +00:00
Take a cx in MultiBuffer::start_transaction
This commit is contained in:
parent
87d16c271e
commit
4ee404a0af
2 changed files with 4 additions and 5 deletions
|
@ -3211,18 +3211,16 @@ impl Editor {
|
|||
|
||||
fn start_transaction(&mut self, cx: &mut ViewContext<Self>) {
|
||||
self.end_selection(cx);
|
||||
self.buffer.update(cx, |buffer, _| {
|
||||
self.buffer.update(cx, |buffer, cx| {
|
||||
buffer
|
||||
.start_transaction(Some(self.selection_set_id))
|
||||
.start_transaction([self.selection_set_id], cx)
|
||||
.unwrap()
|
||||
});
|
||||
}
|
||||
|
||||
fn end_transaction(&self, cx: &mut ViewContext<Self>) {
|
||||
self.buffer.update(cx, |buffer, cx| {
|
||||
buffer
|
||||
.end_transaction(Some(self.selection_set_id), cx)
|
||||
.unwrap()
|
||||
buffer.end_transaction([self.selection_set_id], cx).unwrap()
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -169,6 +169,7 @@ impl MultiBuffer {
|
|||
pub fn start_transaction(
|
||||
&mut self,
|
||||
selection_set_ids: impl IntoIterator<Item = SelectionSetId>,
|
||||
cx: &mut ModelContext<Self>,
|
||||
) -> Result<()> {
|
||||
todo!()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue