Skip to content

Commit

Permalink
Merge pull request #131 from calancha/support-gst
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Mar 27, 2021
2 parents 45af67c + 10ebe95 commit 57db985
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -54,6 +54,7 @@ as default. But you can register your own command and apply other languages.
* PHP(php)
* Emacs Lisp(emacs)
* Scheme(gosh)
* Smalltalk (gst)
* Racket(racket)
* Common Lisp(clisp or sbcl or ccl)
* Clojure(jark or clj-env-dir)
Expand Down
9 changes: 7 additions & 2 deletions quickrun.el
Expand Up @@ -285,6 +285,9 @@ FMT and ARGS passed `message'."
(:description . "Run Lisp file with ccl")))
("scheme/gosh" . ((:command . "gosh")
(:description . "Run Scheme file with gosh(Gauche)")))
("st/gst" . ((:command . "gst")
(:exec . "%c -f %s %a")
(:description . "Run Smalltalk file with GNU Smalltalk")))
("racket" . ((:command . "racket")
(:exec . "%c --require-script %s")
(:description . "Run racket script")))
Expand Down Expand Up @@ -502,6 +505,7 @@ if you set your own language configuration.")
("\\.\\(el\\|elisp\\)\\'" . "emacs")
("\\.\\(lisp\\|lsp\\)\\'" . "lisp")
("\\.\\(scm\\|scheme\\)\\'" . "scheme")
("\\.st\\'" . "st/gst")
("\\.rkt\\'" . "racket")
("\\.js\\'" . "javascript")
("\\.clj\\'" . "clojure")
Expand Down Expand Up @@ -555,6 +559,7 @@ if you set your own language configuration.")
(emacs-lisp-mode . "emacs")
(lisp-mode . "lisp")
(scheme-mode . "scheme")
(smalltalk-mode . "st/gst")
(racket-mode . "racket")
((javascript-mode js-mode js2-mode) . "javascript")
(clojure-mode . "clojure")
Expand Down Expand Up @@ -1163,8 +1168,8 @@ Place holders are beginning with '%' and replaced by:
;;

(defconst quickrun--support-languages
'("c" "c++" "objc" "c#" "perl" "perl6" "ruby" "python" "php" "emacs" "lisp" "scheme" "racket"
"javascript" "clojure" "erlang" "ocaml" "fsharp" "go" "io" "haskell" "java"
'("c" "c++" "objc" "c#" "perl" "perl6" "ruby" "python" "php" "emacs" "lisp" "scheme" "st"
"racket" "javascript" "clojure" "erlang" "ocaml" "fsharp" "go" "io" "haskell" "java"
"d" "markdown" "coffee" "scala" "groovy" "sass" "less" "shellscript" "awk"
"lua" "rust" "dart" "elixir" "tcl" "jsx" "typescript" "fortran" "haml"
"swift" "ats" "r" "nim" "nimscript" "fish" "julia" "gnuplot" "kotlin" "crystal" "v")
Expand Down

0 comments on commit 57db985

Please sign in to comment.