From 33ce6a44e92a5f81c53dd8e8543108384814a7e6 Mon Sep 17 00:00:00 2001 From: s-zeng Date: Sat, 9 Sep 2017 23:00:12 -0400 Subject: [PATCH] Fixed the typo correctly --- autoload/repl/python.vim | 2 +- autoload/repl/scheme.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)