summaryrefslogtreecommitdiffstats
path: root/src/modes/edit/history.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/modes/edit/history.rs')
-rw-r--r--src/modes/edit/history.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modes/edit/history.rs b/src/modes/edit/history.rs
index c176b78..99aafe5 100644
--- a/src/modes/edit/history.rs
+++ b/src/modes/edit/history.rs
@@ -1,6 +1,7 @@
use std::path::{Path, PathBuf};
-use crate::impl_selectable_content;
+use crate::impl_content;
+use crate::impl_selectable;
type DoublePB = (PathBuf, PathBuf);
@@ -52,4 +53,6 @@ impl History {
}
}
-impl_selectable_content!(DoublePB, History);
+impl_selectable!(History);
+impl_content!(DoublePB, History);
+// impl_selectable_content!(DoublePB, History);