Linwei
Linwei
use this: let g:asyncrun_open = 8
can you try to disable the latest qfid feature by: let g:asyncrun_qfid = 0
没法去,这是 vim 的 quickfix 窗口,你可以试试终端模式: :AsyncRun -save=1 -mode=term -pos=TAB pytest :AsyncRun -save=1 -mode=term -pos=bottom pytest
你可以安装 https://github.com/skywind3000/vim-terminal-help 用这个插件作为 runner,然后 :AsyncRun -mode=term -pos=termhelp pytest 这样你既能够看到原始命令,又避免了 || 这个插件的终端还可以用 alt+= 进行打开、关闭切换。
termhelp 有原始命令的
try this: :AsyncRun -mode=term -pos=TAB ls -la
try: :AsyncRun -mode=term -pos=TAB ./xxxx
:AsyncRun -mode=hide command
Just like most IDE, asyncrun can support only one background job at the sametime. but different window has its own location list. that means when you are running 'AsyncRun' in...
Try `-mode=term`: :AsyncRun -mode=term -pos=term echo 1234 && sleep 3 && echo 56789 This command supports multiple tasks running at the same time.