Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.
/ vim-task Public archive

run tasks from vim via go-task

License

Notifications You must be signed in to change notification settings

ratmav/vim-task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vim-task

run tasks from vim via go-task.

installation

vim-task relies on go-task. follow the installation instructions for your os.

use git or your plugin manager of choice to install vim-task.

commands

  • TaskDefault: runs the default task defined in Taskfile.yml.
  • TaskAsk: asks for a task name, then runs that task defined in Taskfile.yml.

mapping example

add the following to your vim configuration to the default task:

" vim-task {{{
nnoremap <silent><Leader>t :execute 'TaskDefault'<CR>
" }}}

acknowledgements