mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-23 03:32:30 +03:00
todos
This commit is contained in:
parent
3c8060f6f5
commit
470ca4a678
@ -19,6 +19,9 @@ use crossterm::event::Event;
|
|||||||
use std::{borrow::Cow, cell::Cell, convert::From, path::Path};
|
use std::{borrow::Cow, cell::Cell, convert::From, path::Path};
|
||||||
use tui::{backend::Backend, layout::Rect, text::Span, Frame};
|
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 {
|
pub struct FileTreeComponent {
|
||||||
title: String,
|
title: String,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
//TODO: remove in favour of new `filetreelist` crate
|
||||||
|
|
||||||
use anyhow::{bail, Result};
|
use anyhow::{bail, Result};
|
||||||
use asyncgit::StatusItem;
|
use asyncgit::StatusItem;
|
||||||
use std::{
|
use std::{
|
||||||
|
@ -5,6 +5,8 @@ use anyhow::Result;
|
|||||||
use asyncgit::StatusItem;
|
use asyncgit::StatusItem;
|
||||||
use std::{cmp, collections::BTreeSet};
|
use std::{cmp, collections::BTreeSet};
|
||||||
|
|
||||||
|
//TODO: use new `filetreelist` crate
|
||||||
|
|
||||||
///
|
///
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub struct StatusTree {
|
pub struct StatusTree {
|
||||||
|
Loading…
Reference in New Issue
Block a user