Merge branch 'brainplot-elisp-support'
This commit is contained in:
commit
e21173173f
|
@ -71,7 +71,7 @@ func Execute(res http.ResponseWriter, req *http.Request) {
|
||||||
"cpp", "c++",
|
"cpp", "c++",
|
||||||
"csharp", "cs", "c#",
|
"csharp", "cs", "c#",
|
||||||
"elixir", "exs",
|
"elixir", "exs",
|
||||||
"emacs",
|
"elisp", "el",
|
||||||
"go",
|
"go",
|
||||||
"java",
|
"java",
|
||||||
"julia", "jl",
|
"julia", "jl",
|
||||||
|
|
|
@ -99,6 +99,12 @@ case "$lang" in
|
||||||
"swift")
|
"swift")
|
||||||
bin=swift
|
bin=swift
|
||||||
;;
|
;;
|
||||||
|
"elisp" | "el")
|
||||||
|
bin=emacs
|
||||||
|
;;
|
||||||
|
"bash")
|
||||||
|
bin=bash
|
||||||
|
;;
|
||||||
"typescript" | "ts")
|
"typescript" | "ts")
|
||||||
bin=typescript
|
bin=typescript
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
cd /tmp/$2
|
||||||
|
runuser -l runner$1 -c "cd /tmp/$2 ; cat args.args | xargs -d '\n' timeout -s KILL 3 emacs -Q --script code.code"
|
|
@ -0,0 +1 @@
|
||||||
|
(message "good")
|
Loading…
Reference in New Issue