diff --git a/README.md b/README.md index 43ff27e..fe0116c 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ Sprint adds a command to vim to allow for asynchronous running of your file, per ## Supported languages and language dependencies -|Languages | Compiler| -|--------|--------| -|C | GCC| -|C++ | G++| -|Python | python| -|Php | php| -|Javascript | node| -|Haskell | ghc| +|Languages | Compiler| +|-----------|---------| +|C |GCC | +|C++ |G++ | +|Python |python | +|Php |php | +|Javascript |node | +|Haskell |ghc | ### Things to consider In order to compile the contents of the buffer Sprint must save your files before executing. However after executing the file Sprint will delete the file.(Sprint is for quick testing not for final release builds, makefiles are your friend) diff --git a/plugin/sprint.vim b/plugin/sprint.vim index eb481d9..ae99f27 100644 --- a/plugin/sprint.vim +++ b/plugin/sprint.vim @@ -6,7 +6,6 @@ " let g:SprintHidden = 1 " Sprint function " let g:SprintForceRun = 0 -" let g:SprintHidden = 0 function! Sprint() if exists("g:SprintForceRun") if g:SprintForceRun @@ -36,6 +35,8 @@ function! Sprint() if g:SprintHidden == 0 copen endif + else + copen endif endfunction