summaryrefslogtreecommitdiffstats
path: root/src/visited.rs
diff options
context:
space:
mode:
authorqkzk <qu3nt1n@gmail.com>2022-12-21 00:30:00 +0100
committerqkzk <qu3nt1n@gmail.com>2022-12-21 00:32:38 +0100
commitc02d7a5fd8eaaf183c7a4afee6d2503deb146812 (patch)
tree2f45005d3f36578c5f57b0467874486aaf6cc495 /src/visited.rs
parentc10b023eeac815039a4e4e2cbf813b422f20ef6a (diff)
fix wrong navigation order. Rename everything to selectable content
Diffstat (limited to 'src/visited.rs')
-rw-r--r--src/visited.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/visited.rs b/src/visited.rs
index a01c28d..e51cb4c 100644
--- a/src/visited.rs
+++ b/src/visited.rs
@@ -1,6 +1,6 @@
use std::path::PathBuf;
-use crate::impl_indexed_vector;
+use crate::impl_selectable_content;
/// A Vec of pathbuf of visited files.
/// It's mostly used as a stack but we want to avoid multiple instances of the
@@ -41,4 +41,4 @@ impl History {
}
}
-impl_indexed_vector!(PathBuf, History);
+impl_selectable_content!(PathBuf, History);