feat: add some braile spinners to unicode.zig
Might be useful somewhere...
This commit is contained in:
parent
e5c89ea754
commit
5cfe2f6be4
1 changed files with 21 additions and 0 deletions
|
@ -81,3 +81,24 @@ pub fn get_letter_casing() *LetterCasing {
|
||||||
letter_casing = LetterCasing.init(letter_casing_arena.allocator()) catch @panic("LetterCasing.init");
|
letter_casing = LetterCasing.init(letter_casing_arena.allocator()) catch @panic("LetterCasing.init");
|
||||||
return &letter_casing.?;
|
return &letter_casing.?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const spinner = [_][]const u8{
|
||||||
|
"⠋",
|
||||||
|
"⠙",
|
||||||
|
"⠹",
|
||||||
|
"⠸",
|
||||||
|
"⠼",
|
||||||
|
"⠴",
|
||||||
|
"⠦",
|
||||||
|
"⠧",
|
||||||
|
"⠇",
|
||||||
|
};
|
||||||
|
|
||||||
|
const spinner_short = [_][]const u8{
|
||||||
|
"⠋",
|
||||||
|
"⠙",
|
||||||
|
"⠸",
|
||||||
|
"⠴",
|
||||||
|
"⠦",
|
||||||
|
"⠇",
|
||||||
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue