Skip to content

Commit 0b346b0

Browse files
author
skywind3000
committed
update 2.4.0
1 parent b18c580 commit 0b346b0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,7 @@ See: [Cooperate with famous plugins](https://github.com/skywind3000/asyncrun.vim
364364

365365
## History
366366

367+
- 2.4.0 (2020-02-10): fixed internal terminal issue in msys.
367368
- 2.3.0 (2020-02-10): new mode aliases, minor issue fix.
368369
- 2.2.9 (2020-02-10): new terminal mode options: `-safe=1`, `-listed=0` and `-reuse`.
369370
- 2.2.6 (2020-02-06): new: parameter `-hidden` when using `-mode=term` to set `bufhidden` to `hidden`.

plugin/asyncrun.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Maintainer: skywind3000 (at) gmail.com, 2016, 2017, 2018, 2019, 2020
44
" Homepage: http://www.vim.org/scripts/script.php?script_id=5431
55
"
6-
" Last Modified: 2020/02/10 17:57
6+
" Last Modified: 2020/02/11 01:01
77
"
88
" Run shell command in background and output to quickfix:
99
" :AsyncRun[!] [options] {cmd} ...
@@ -920,7 +920,7 @@ function! s:ScriptWrite(command, pause)
920920
if a:pause != 0
921921
let lines += ['read -n1 -rsp "press any key to confinue ..."']
922922
endif
923-
let tmpname = fnamemodify(tempname(), ':h') . '/asyncrun.cmd'
923+
let tmpname = fnamemodify(tempname(), ':h') . '/asyncrun.sh'
924924
endif
925925
if v:version >= 700
926926
call writefile(lines, tmpname)
@@ -1649,7 +1649,7 @@ endfunc
16491649
" asyncrun -version
16501650
"----------------------------------------------------------------------
16511651
function! asyncrun#version()
1652-
return '2.3.0'
1652+
return '2.4.0'
16531653
endfunc
16541654

16551655

0 commit comments

Comments
 (0)