Skip to content

Commit be7787e

Browse files
PurpleMysto2sh
andauthored
feat: support AutoHotKey (#508)
* feat: support AutoHotKey * improvement: improve ahk logo * fix alphabetical order of languages Co-authored-by: o2sh <[email protected]>
1 parent 07e8929 commit be7787e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

resources/autohotkey.ascii

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{1} .----------------.
2+
{1}| .--------------. |
3+
{1}| | {0} ____ ____ {1} | |
4+
{1}| | {0}|_ || _|{1} | |
5+
{1}| | {0} | |__| | {1} | |
6+
{1}| | {0} | __ | {1} | |
7+
{1}| | {0} _| | | |_ {1} | |
8+
{1}| | {0}|____||____|{1} | |
9+
{1}| | | |
10+
{1}| '--------------' |
11+
{1} '----------------'

src/info/language.rs

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ macro_rules! define_languages {
159159
define_languages! {
160160
{ Ada, "ada.ascii", define_colors!( [Color::White, Color::Cyan, Color::Blue] : [Color::TrueColor{r:255, g:255, b:255}, Color::TrueColor{r:0, g:24, b:201}, Color::TrueColor{r:12, g:10, b:124}] ) },
161161
{ Assembly, "assembly.ascii", define_colors!( [Color::Cyan] ) },
162+
{ AutoHotKey, "autohotkey.ascii", define_colors!( [Color::White, Color::Green] : [Color::TrueColor{r:255, g:255, b:255}, Color::TrueColor{r: 0x11, g: 0x98, b: 0x10}]) },
162163
{ Bash, "bash.ascii", define_colors!( [Color::White] ), "bash" },
163164
{ C, "c.ascii", define_colors!( [Color::Cyan, Color::Blue, Color::White] : [Color::TrueColor{r:93, g:108, b:191}, Color::TrueColor{r:41, g:54, b:147}, Color::TrueColor{r:255, g:255, b:255}] ) },
164165
{ Clojure, "clojure.ascii", define_colors!( [Color::Cyan, Color::Green] ) },

0 commit comments

Comments
 (0)