Initial hacky displaying of git gutter in multi-buffers

This commit is contained in:
Julia 2022-12-09 15:24:13 -05:00
parent 461c2400ad
commit 00b7c78e33
4 changed files with 76 additions and 13 deletions

View file

@ -597,6 +597,10 @@ where
self.cursor.item()
}
pub fn item_summary(&self) -> Option<&'a T::Summary> {
self.cursor.item_summary()
}
pub fn next(&mut self, cx: &<T::Summary as Summary>::Context) {
self.cursor.next_internal(&mut self.filter_node, cx);
}