diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-11-18 20:33:42 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-11-18 20:33:42 +0100 |
commit | c228e993ad6a8b79db5a5a77aecfdbd8e92ea31f (patch) | |
tree | d446251a71a681285c17b5fb000b0d3b1090ef2c /autoload/fsharp.vim | |
parent | da18fe6851e95e146016f7abd2f799056e074cd9 (diff) | |
download | vim-polyglot-c228e993ad6a8b79db5a5a77aecfdbd8e92ea31f.tar.gz vim-polyglot-c228e993ad6a8b79db5a5a77aecfdbd8e92ea31f.zip |
Update
Diffstat (limited to 'autoload/fsharp.vim')
-rw-r--r-- | autoload/fsharp.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/fsharp.vim b/autoload/fsharp.vim index 958fc0c1..7ce4ab2f 100644 --- a/autoload/fsharp.vim +++ b/autoload/fsharp.vim @@ -467,10 +467,10 @@ function! fsharp#sendFsi(text) if fsharp#openFsi(!g:fsharp#fsi_focus_on_send) > 0 " Neovim if has('nvim') - call chansend(s:fsi_job, a:text . ";;". "\n") + call chansend(s:fsi_job, a:text . "\n" . ";;". "\n") " Vim 8 else - call term_sendkeys(s:fsi_buffer, a:text . ";;" . "\<cr>") + call term_sendkeys(s:fsi_buffer, a:text . "\<cr>" . ";;" . "\<cr>") call term_wait(s:fsi_buffer) endif endif |