Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LLVM language support #507

Merged
merged 3 commits into from
Oct 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions resources/llvm.ascii
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{0} jKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKL
{0} ]KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKL
{0} ]KKKKKKKK9M"M " '`"**MKKKKKKKKKKL
{0} ]KKKKKKH* *KKKKKKL
{0} ]KKKKK^ ,wm###mww "KKKL
{0} ]KKKM #KKKKKKKKKKKKW "KL
{0} ]KKK ]KKKKKKKKKKKKKKKN
{0} ]KKK "RKKKKKKKKKKKKKKKK
{0} ]KKN `9KKKKKKKKKKKKKK
{0} ]KKK 9KKKKKKKKKKKKN
{0} ]KKK 1KKKKKKKKKKKK
{0} ]KKK .KKKKKKKKKKKK
spenserblack marked this conversation as resolved.
Show resolved Hide resolved
{0} ]KKKKw, , 9KKKKKKKKKKK
{0} ]KKKKKKK KK, `#KKKKKKKKM
{0} ]KKKKKKKL 1KDwww#KKKKKKKKKK
{0} ]KKKKKKK, ,KKKKKKKKKKKKKKR
{0} `KKKKKKKKKKKKKKKKKKKKKKKM`
{0} "KKKKKKKKKKKKKKKKKKB"
{0} `l"lllllllll`"l'`
{0}
1 change: 1 addition & 0 deletions src/info/language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ define_languages! {
{ Kotlin, "kotlin.ascii", define_colors!( [Color::Blue, Color::Yellow, Color::Magenta] ) },
{ Lisp, "lisp.ascii", define_colors!( [Color::White] ) },
{ Lua, "lua.ascii", define_colors!( [Color::Blue, Color::White, Color::White] : [Color::TrueColor{ r:46, g:0 ,b:127}, Color::TrueColor{ r:128, g:128 ,b:128}, Color::TrueColor{ r:255, g:255 ,b:255} ] ) },
{ LLVM, "llvm.ascii", define_colors!( [Color::Red, Color::White] : [Color::TrueColor{ r:152, g:1 ,b:46}, Color::TrueColor{ r:255, g:255 ,b:255} ] ) },
spenserblack marked this conversation as resolved.
Show resolved Hide resolved
{ Markdown, "markdown.ascii", define_colors!( [Color::White, Color::Red] ) },
{ Nim, "nim.ascii", define_colors!( [Color::Yellow, Color::White] ) },
{ Nix, "nix.ascii", define_colors!( [Color::Cyan, Color::Blue] ) },
Expand Down