Skip to content

Commit 6210358

Browse files
authored
Re-implement Lisp as "Common Lisp"
1 parent d280b5f commit 6210358

File tree

2 files changed

+28
-29
lines changed

2 files changed

+28
-29
lines changed

languages.yaml

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,33 @@ Coldfusion:
329329
- "#E5F3FC"
330330
- "#274550"
331331
chip: "#ed2cd6"
332+
CommonLisp:
333+
type: programming
334+
ascii: |
335+
{0} ............
336+
{0} ********..............
337+
{0} *************.............
338+
{0} ****************..............
339+
{0} *******************...***.........
340+
{0} **...********...*****...***.........
341+
{0} ***...*******...******....***.........
342+
{0}****...******...*******....****.........
343+
{0}*****...****...*******.....*****........
344+
{0}******...**...******.......******.......
345+
{0}*******......******.......***..***......
346+
{0}********.....*****.......***....***.....
347+
{0}*********....****.......***......***....
348+
{0} *********...****......***.......***...
349+
{0} *********...***.....***........***..
350+
{0} *********...***...................
351+
{0} **************................
352+
{0} *************.............
353+
{0} **************........
354+
{0} ************
355+
colors:
356+
ansi:
357+
- white
358+
chip: "#3FB68B"
332359
Coq:
333360
type: programming
334361
ascii: |
@@ -1384,34 +1411,6 @@ Kotlin:
13841411
- yellow
13851412
- magenta
13861413
chip: "#A97BFF"
1387-
# TODO
1388-
# Lisp:
1389-
# type: programming
1390-
# ascii: |
1391-
# {0} ............
1392-
# {0} ********..............
1393-
# {0} *************.............
1394-
# {0} ****************..............
1395-
# {0} *******************...***.........
1396-
# {0} **...********...*****...***.........
1397-
# {0} ***...*******...******....***.........
1398-
# {0}****...******...*******....****.........
1399-
# {0}*****...****...*******.....*****........
1400-
# {0}******...**...******.......******.......
1401-
# {0}*******......******.......***..***......
1402-
# {0}********.....*****.......***....***.....
1403-
# {0}*********....****.......***......***....
1404-
# {0} *********...****......***.......***...
1405-
# {0} *********...***.....***........***..
1406-
# {0} *********...***...................
1407-
# {0} **************................
1408-
# {0} *************.............
1409-
# {0} **************........
1410-
# {0} ************
1411-
# colors:
1412-
# ansi:
1413-
# - white
1414-
# chip: "#3FB68B"
14151414
Llvm:
14161415
type: programming
14171416
ascii: |

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ mod test {
388388
},
389389
ascii: AsciiCliOptions {
390390
ascii_colors: vec![5, 0],
391-
ascii_language: Some(Language::Lisp),
391+
ascii_language: Some(Language::CommonLisp),
392392
..Default::default()
393393
},
394394
visuals: VisualsCliOptions {

0 commit comments

Comments
 (0)