From 325c5e6e5c7c08f9eec79d2979f802188a6a07f3 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sat, 29 Apr 2023 15:46:05 +0200 Subject: [PATCH] Remove resolved todos --- cove-config/src/keys.rs | 1 - cove-macro/src/lib.rs | 1 - cove/src/main.rs | 1 - cove/src/ui/chat/blocks.rs | 1 - 4 files changed, 4 deletions(-) diff --git a/cove-config/src/keys.rs b/cove-config/src/keys.rs index 616aa2e..b9372d5 100644 --- a/cove-config/src/keys.rs +++ b/cove-config/src/keys.rs @@ -321,7 +321,6 @@ pub struct TreeCursor { // TODO Bindings inspired by vim's ()/[]/{} bindings? } -// TODO Split up in "message", "nicklist", "room"? #[derive(Debug, Deserialize, Document, KeyGroup)] pub struct TreeAction { /// Reply to message, inline if possible. diff --git a/cove-macro/src/lib.rs b/cove-macro/src/lib.rs index 9ce748d..82ef61a 100644 --- a/cove-macro/src/lib.rs +++ b/cove-macro/src/lib.rs @@ -24,7 +24,6 @@ pub fn derive_document(input: proc_macro::TokenStream) -> proc_macro::TokenStrea } } -// TODO Derive Default as well #[proc_macro_derive(KeyGroup)] pub fn derive_group(input: proc_macro::TokenStream) -> proc_macro::TokenStream { let input = parse_macro_input!(input as DeriveInput); diff --git a/cove/src/main.rs b/cove/src/main.rs index e7bc101..eb71d85 100644 --- a/cove/src/main.rs +++ b/cove/src/main.rs @@ -12,7 +12,6 @@ // TODO Enable warn(unreachable_pub)? // TODO Remove unnecessary Debug impls and compare compile times // TODO Time zones other than UTC -// TODO Fix password room auth // TODO Invoke external notification command? mod euph; diff --git a/cove/src/ui/chat/blocks.rs b/cove/src/ui/chat/blocks.rs index 0705cf8..2a9eb0a 100644 --- a/cove/src/ui/chat/blocks.rs +++ b/cove/src/ui/chat/blocks.rs @@ -113,7 +113,6 @@ impl Blocks { } } - // TODO Remove index from search result pub fn find_block(&self, id: &Id) -> Option<(Range, &Block)> where Id: Eq,