Defaults to python 3.6 and added racket support

This commit is contained in:
s-zeng 2017-09-09 22:02:14 -04:00
parent 44f1bccb6a
commit 5710262988
2 changed files with 6 additions and 1 deletions

View File

@ -46,6 +46,7 @@ Run `:Repl` without saving the code on a file.
* JavaScript
* Clojure
* Idris
* Racket
## Installation

View File

@ -18,7 +18,7 @@ let g:repl#default_filetype_repl = {
\ 'opt' : '--simple-prompt -r'
\ },
\ 'python' : {
\ 'repl' : 'python',
\ 'repl' : 'python3.6',
\ 'opt' : '-i'
\ },
\ 'erlang' : {
@ -36,6 +36,10 @@ let g:repl#default_filetype_repl = {
\ 'idris' : {
\ 'repl' : 'idris',
\ 'opt' : ''
\ },
\ 'racket' : {
\ 'repl' : 'racket',
\ 'opt' : ''
\ }
\}