Telescope plugin to load and run tasks in a project that conform to VS Code's Editor Tasks
- ⚙ Run tasks with Toggleterm
- run tasks in a horizontal or vertical split terminal
- ✏️ edit input variables that will be used for the session
- Use VS Code's variables in the command (limited support, see desired features)
- Use VS Code's launch.json pattern (limited support)
- ⟳ Run tasks from your history, sorted by most used
Short Demo
With Plug:
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim' " make sure you have telescope installed
Plug 'EthanJWright/vs-tasks.nvim'
With Packer:
use {
'EthanJWright/vs-tasks.nvim',
requires = {
'nvim-lua/popup.nvim',
'nvim-lua/plenary.nvim',
'nvim-telescope/telescope.nvim'
}
}
Set up keybindings:
nnoremap <Leader>ta :lua require("telescope").extensions.vstask.tasks()<CR>
nnoremap <Leader>ti :lua require("telescope").extensions.vstask.inputs()<CR>
nnoremap <Leader>th :lua require("telescope").extensions.vstask.history()<CR>
nnoremap <Leader>tl :lua require('telescope').extensions.vstask.launch()<cr>
Note: When the task telescope is open:
- Enter will open in toggleterm
- Ctrl-v will open in a vertical split terminal
- Ctrl-p will open in a split terminal
VS Tasks can auto detect certain scripts from your package, such as npm scripts.
- Configure harpoon use (auto cache terminals based on task)
- Configure toggle term use
- Configure terminal behavior
- Cache json conf sets whether the config will be ran every time. If the cache is removed, this will also remove cache features such as remembering last ran command
lua <<EOF
require("vstask").setup({
cache_json_conf = true, -- don't read the json conf every time a task is ran
cache_strategy = "last", -- can be "most" or "last" (most used / last used)
use_harpoon = true, -- use harpoon to auto cache terminals
telescope_keys = { -- change the telescope bindings used to launch tasks
vertical = '<C-v>',
split = '<C-p>',
tab = '<C-t>',
current = '<CR>',
},
autodetect = { -- auto load scripts
npm = "on"
},
terminal = 'toggleterm',
term_opts = {
vertical = {
direction = "vertical",
size = "80"
},
horizontal = {
direction = "horizontal",
size = "10"
},
current = {
direction = "float",
},
tab = {
direction = 'tab',
}
}
})
EOF
In your project root set up .vscode/tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "🧪 Run unit tests that match the expression",
"type": "shell",
"command": "pytest -k '${input:expression}'"
},
{
"label": "🐮 Cowsay",
"type": "shell",
"command": "echo ${input:cowmsg} | cowsay"
}
],
"inputs": [
{
"id": "expression",
"description": "Expression to filter tests with",
"default": "",
"type": "promptString"
},
{
"id": "cowmsg",
"description": "Message for cow to say",
"default": "Hello there!",
"type": "promptString"
}
]
}
lua require("telescope").extensions.vstask.tasks() -- open task list in telescope
lua require("telescope").extensions.vstask.inputs() -- open the input list, set new input
lua require("telescope").extensions.vstask.history() -- search history of tasks
lua require("telescope").extensions.vstask.close() -- close the task runner (if toggleterm)
You can also configure themes and pass options to the picker
lua require("telescope").extensions.vstask.tasks(require('telescope.themes').get_dropdown()) -- open task list in telescope
You can also grab the last run task and do what you want with it, such as open it in a new terminal:
function _RUN_LAST_TASK()
local vstask_ok, vstask = pcall(require, "vstask")
if not vstask_ok then
return
end
local cmd = vstask.get_last()
vim.cmd("vsplit")
vim.cmd("term " .. cmd)
end
All variables available in VS Code should also work in this plugin, though they are not all tested.
At this point only the features I need professionally have been implemented. The implemented schema elements are as follows:
- Tasks: Label
- Tasks: Command
- Tasks: ID
- Inputs: Description
- Inputs: Default
As I do not use VS Code, the current implementation are the elements that seem most immediately useful. In the future it may be good to look into implementing other schema elements such as problemMatcher and group.