mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
todos
This commit is contained in:
parent
3c8060f6f5
commit
470ca4a678
3 changed files with 7 additions and 0 deletions
|
|
@ -19,6 +19,9 @@ use crossterm::event::Event;
|
|||
use std::{borrow::Cow, cell::Cell, convert::From, path::Path};
|
||||
use tui::{backend::Backend, layout::Rect, text::Span, Frame};
|
||||
|
||||
//TODO: rename so that its clear this only works for Statuses
|
||||
//TODO: use new `filetreelist` crate
|
||||
|
||||
///
|
||||
pub struct FileTreeComponent {
|
||||
title: String,
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
//TODO: remove in favour of new `filetreelist` crate
|
||||
|
||||
use anyhow::{bail, Result};
|
||||
use asyncgit::StatusItem;
|
||||
use std::{
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@ use anyhow::Result;
|
|||
use asyncgit::StatusItem;
|
||||
use std::{cmp, collections::BTreeSet};
|
||||
|
||||
//TODO: use new `filetreelist` crate
|
||||
|
||||
///
|
||||
#[derive(Default)]
|
||||
pub struct StatusTree {
|
||||
|
|
|
|||
Loading…
Reference in a new issue