1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 03:39:16 +03:00
wezterm/termwiz/examples/gennerdfonts.rs
Wez Furlong 0f8146b212
docs: shift from return {} style to config.something style
Nudge new users towards using this style:

```lua
local config = {}
config.color_scheme = 'Batman'
return config
```

and surface how to write lua modules closer to the main section
on config files. In that lua modules section, nudge towards using
a convention similar to that of the plugin spec described in
this commit: e4ae8a844d
2023-03-19 18:26:21 -07:00

13 lines
308 B
Rust

//! This is used to generate a table in the wezterm docs
fn main() {
println!("| | |");
println!("|-|-|");
for &(label, c) in termwiz::nerdfonts::NERD_FONT_GLYPHS {
println!(
"|<span class=\"nerdfont big\">&#x{:x};</span>|{}|",
c as u32, label
);
}
}