remove duplicate entries from theme picker (#3439)

This commit is contained in:
ChrHorn 2022-08-15 17:18:04 +02:00 committed by GitHub
parent 8a75795472
commit a7ff39fe3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -260,6 +260,7 @@ pub mod completers {
names.push("default".into());
names.push("base16_default".into());
names.sort();
names.dedup();
let mut names: Vec<_> = names
.into_iter()