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 all commits
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
19 changes: 19 additions & 0 deletions resources/llvm.ascii
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{0}KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
{0}KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
{0}KKKKKKKKKKM"M " '`"**MKKKKKKKKKKK
{0}KKKKKKKH* *KKKKKKK
{0}KKKKKK^ ,wm###mww "KKKK
{0}KKKKM #KKKKKKKKKKKKW "KK
{0}KKKK KKKKKKKKKKKKKKKKN
{0}KKKK "RKKKKKKKKKKKKKKKK
{0}KKKN `9KKKKKKKKKKKKKK
{0}KKKK 9KKKKKKKKKKKKN
{0}KKKK 1KKKKKKKKKKKK
{0}KKKK .KKKKKKKKKKKK
{0}KKKKKw, , 9KKKKKKKKKKK
{0}KKKKKKKK KK, `#KKKKKKKKM
{0}KKKKKKKKL 1KDwww#KKKKKKKKKK
{0}KKKKKKKK, ,KKKKKKKKKKKKKKR
{0} `KKKKKKKKKKKKKKKKKKKKKKKM`
{0} "KKKKKKKKKKKKKKKKKKB"
{0} `KKKKKKKKKKKKKK'`
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::TrueColor{ r:152, g:1 ,b:46}] ) },
{ 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