Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3 execfile error #27

Merged
merged 1 commit into from
Aug 22, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions LoadFileToRepl.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
, "split" : "vertically"

// Here are all supported language/REPL-specific load commands;
// you can edit them (in you User Settings), but if you want to add new, please, write me
// either by email: alexey.alekhin@me.com or using issue tracker on github
// you can edit them (in you User Settings), but if you want to add a new one,
// please open an issue/pull-request on github
, "haskell_load_command" : ":load \"%s\""
, "scala_load_command" : ":load %s"
, "idris_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\")"
, "python_load_command" : "exec(open(\"%s\").read())"
, "lua_load_command" : "dofile(\"%s\")"
, "powershell_load_command" : ". %s"
, "sml_load_command" : "use \"%s\";"
Expand Down