diff --git a/autoload/repl/python.vim b/autoload/repl/python.vim index ad5fcf8..1228e60 100644 --- a/autoload/repl/python.vim +++ b/autoload/repl/python.vim @@ -1,6 +1,6 @@ scriptencoding utf-8 -function! repl#scheme#open_repl() abort +function! repl#python#open_repl() abort " Setting up the file for the current file if &modified " Create new file temporary diff --git a/autoload/repl/scheme.vim b/autoload/repl/scheme.vim index 7f753f4..b6d4de6 100644 --- a/autoload/repl/scheme.vim +++ b/autoload/repl/scheme.vim @@ -1,6 +1,6 @@ scriptencoding utf-8 -function! repl#clojure#open_repl() abort +function! repl#scheme#open_repl() abort if &modified let l:module_file = tempname() . '.rkt' call writefile(getline(1, expand('$')), l:module_file)