Skip to content

nobody-famous/tasks.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tasks.nvim

Run VSCode tasks in Neovim

Configuration

Using lazy.nvim,

return {
    'nobody-famous/tasks.nvim',

    config = function()
        vim.keymap.set({ 'n', 'x' }, '<leader>tk', require('tasks.command').kill)
        vim.keymap.set({ 'n', 'x' }, '<leader>`', require('tasks.command').toggle)
        vim.keymap.set({ 'n', 'i', 'x' }, '<A-S-r>', require('tasks.picker').run_task, {})
    end
}

The kill command terminates the running task. The toggle command shows/hides the task buffer in a split window.

About

Run VSCode tasks in Neovim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages