From 20b26ec3a06c9e5883de6a49cf025f227ff52417 Mon Sep 17 00:00:00 2001 From: Alexey Alekhin Date: Sun, 22 Sep 2013 05:53:53 +0200 Subject: [PATCH] Added command for mit-scheme repl --- LoadFileToRepl.sublime-settings | 1 + README.markdown | 1 + 2 files changed, 2 insertions(+) diff --git a/LoadFileToRepl.sublime-settings b/LoadFileToRepl.sublime-settings index 7123ef6..5d48e0c 100644 --- a/LoadFileToRepl.sublime-settings +++ b/LoadFileToRepl.sublime-settings @@ -21,6 +21,7 @@ , "scala_load_command" : ":load %s" , "clojure_load_command" : "(load-file \"%s\")" , "lisp_load_command" : "(load \"%s\")" + , "scheme_load_command" : "(load \"%s\")" , "ruby_load_command" : "load '%s'" , "python_load_command" : "execfile(\"%s\")" , "lua_load_command" : "dofile(\"%s\")" diff --git a/README.markdown b/README.markdown index c8f7e49..07dcc54 100644 --- a/README.markdown +++ b/README.markdown @@ -19,6 +19,7 @@ At the moment it supports load command for REPLs of the following languages: - Ruby - Scala - SML +- MIT-Scheme - ... it's easy to extend this list. Welcome to suggest yours!