allow file renaming

This commit is contained in:
2025-05-02 21:30:38 +02:00
parent 2aa309ba5c
commit fcd0198cde
3 changed files with 36 additions and 6 deletions

View File

@@ -56,6 +56,13 @@ pub static PREFIXES: Lazy<HashMap<&'static str, PrintPrefix>> = Lazy::new(|| {
padding: 7,
},
),
(
"renamed",
PrintPrefix {
text: "Renamed".bright_blue(),
padding: 5,
},
),
])
});