mirror of
https://github.com/lsd-rs/lsd
synced 2024-11-10 06:14:19 +00:00
Add some comments
This commit is contained in:
parent
c4fef17476
commit
8d15f4b1f3
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
use meta::Meta;
|
||||
use std::collections::HashMap;
|
||||
|
||||
// In order to add a new icon, write the unicode value like "\ue5fb" then
|
||||
// run the command below in vim:
|
||||
//
|
||||
// s#\\u[0-9a-f]*#\=eval('"'.submatch(0).'"')#
|
||||
lazy_static! {
|
||||
pub static ref IconsByName: HashMap<&'static str, &'static str> = {
|
||||
let mut m = HashMap::new();
|
||||
|
|
Loading…
Reference in a new issue