asynctasks.vim icon indicating copy to clipboard operation
asynctasks.vim copied to clipboard

:rocket: Modern Task System for Project Building, Testing and Deploying !!

Results 42 asynctasks.vim issues
Sort by recently updated
recently updated
newest added

Currently AsyncTaskEdit always opens the tasks file in a horizontal split. Is it possible to add an option to open the file in a new buffer?

For example, if I am editing a single-file project (C++ source code) and upon running Asyncrun on it, there are no errors or warnings and the build completed successfully, then...

bottom:内置终端,不可以复用内部终端 每次运行都打开一个终端 vimrc配置: noremap :AsyncTask file-run noremap :AsyncTask file-build let g:asyncrun_open = 6 let g:asynctasks_term_pos = 'bottom' let g:asynctasks_term_rows = 5 tasks.ini配置: [file-build] command=gcc "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" command:go=go build -o...

I have a task with: `errorformat=%f:%l:%c:\ %m,%-G%.%#errors\ generated.,%-Gmake%m,%-G[%[0-9\ ]%\\\{\\,3}%%]%m` And this part: `%-G[%[0-9\ ]%\\\{\\,3}%%]%m` does not work because the **_[ ]_** characters are there I think. How do I escape...

如果可以添加上 job 的 dependency就好了。比如运行 A 命令,可以指定某些命令(自动在运行 A 前触发 就像makefile

I checked out the macro section and don't see anything specifying visual selection, is there anyway to invoke a task and pass the current visual selection to it? for example,...

How to perform a task : `AsyncTask gulp-watch` if gulpfile.js exist ? I try in .vimrc ``` if filereadable("gulpfile.js") AsyncTask gulp-watch endif ``` But I've an error : `error function...

Hello! It's a nice vim plugin and I get a lot of benefit from it! But I meet a problem that I can't change to my root directory on terminal...

Is it possible to have a pre-command. For example, if you run for the first time, then it sets up some variable or something (in my case, i want to...

Is it possible to run tasks sequentially? For example, in most IDEs, when a project starts, compilation occurs first. It would be convenient to assign build + run to a...