Problems summary
quick-run can not execute well at vim's launch.

Expected
quick-run can execute well at vim's launch.

Environment Information
4b493fa
Mon May 7 14:11:38 2018 +0900
Merge pull request #173 from rhysd/typescript/ts-node (HEAD -> master, origin/master, origin/HEAD)
ProductName: Mac OS X
ProductVersion: 10.13.4
BuildVersion: 17E202
- neovim/Vim
:version output:
$ vim --version
VIM - Vi IMproved 8.1 (2018 May 17, compiled May 25 2018 01:25:35)
macOS version
Included patches: 1-22
Compiled by Homebrew
$ nvim --version
NVIM v0.3.0-1139-g35cc15e15
Build type: Release
LuaJIT 2.0.5
Provide a minimal init.vim/vimrc with less than 50 lines (Required!)
" file name is minimal.vimrc
" set path
set runtimepath+=~/.cache/dein/repos/github.com/Shougo/vimproc.vim
set runtimepath+=~/.cache/dein/repos/github.com/thinca/vim-quickrun
" turn on plugins
set nocompatible
filetype plugin indent on
syntax enable
let s:foo = {
\ 'command' : 'fsharpi --readline-'
\ ,'runner' : 'concurrent_process'
\ ,'runner/concurrent_process/load' : '#load "%S";;'
\ ,'runner/concurrent_process/prompt': '> '
\}
autocmd BufReadPost *.fsx call quickrun#run( s:foo )
The reproduce ways from neovim/Vim starting (Required!)
launch F# file
// file name is foo.fsx
let foo () =
printfn "hello"
let bar () =
printfn "world"
let (=) _ _ = 5
foo ()
bar ()
$ vim -N -u minimal.vimrc foo.fsx
Work around
Use Neovim
Problems summary
quick-run can not execute well at vim's launch.
Expected
quick-run can execute well at vim's launch.
Environment Information
4b493fa Mon May 7 14:11:38 2018 +0900 Merge pull request #173 from rhysd/typescript/ts-node (HEAD -> master, origin/master, origin/HEAD):versionoutput:Provide a minimal init.vim/vimrc with less than 50 lines (Required!)
The reproduce ways from neovim/Vim starting (Required!)
launch
F#fileWork around
Use
Neovim