Skip to content

Releases: skywind3000/asyncrun.vim

20200210 - v2.3.0

10 Feb 10:09
Compare
Choose a tag to compare

This is the minimal version to support asynctasks.vim.

  • mode alises:

    • -mode=term -pos=vim alias to -mode=bang .
    • -mode=term -pos=quickfix alias to -mode=async -raw=1.
    • -mode=term -pos=os alias to -mode=os
  • minor issues fixed.

20200210 - v2.2.9

09 Feb 22:36
Compare
Choose a tag to compare

new terminal mode options: -safe, -listed=0 and -reuse:

  • -safe=1: use a temporary script to pass arguments, this is the most accurate way for argument passing.
  • -listed=0: set nobuflisted for the terminal buffer.
  • -reuse: when using -mode=term and -pos=tab together, try to use a reusable terminal tab.

All of these are for -mode=term only.

20200206 - v2.2.6

06 Feb 07:51
Compare
Choose a tag to compare
  • new: parameter -hidden when using -mode=term to set bufhidden to hidden
  • improvement: keep alternative window when splitting an terminal window
  • improvement: more safe to start a terminal in a new tab

20200205 - v2.2.5

04 Feb 22:38
Compare
Choose a tag to compare
  • More safe to start a terminal.

  • exit when starting terminal failed with -pos=curwin.

  • new: -program=wsl to run command in wsl (windows 10 only):

      :AsyncRun -program=wsl ls -la
      :AsyncRun -program=wsl -dist=debian ls -la
    
  • new: -pos=curwin to open terminal in current window:

      :AsyncRun -mode=term -pos=curwin {command}
    

20200120 - v2.2.1

20 Jan 11:59
Compare
Choose a tag to compare
  • set noreletivenumber for terminal window when using -mode=term.

20200118 - v2.2.0

18 Jan 06:28
Compare
Choose a tag to compare
  • AsyncRun -mode=term {command} to open an internal terminal.
  • fixed minor defects.