{"id":31761634,"url":"https://github.com/eumis/tasks.nvim","last_synced_at":"2026-02-17T15:31:28.139Z","repository":{"id":299994954,"uuid":"1004723308","full_name":"eumis/tasks.nvim","owner":"eumis","description":"Run shell commands(tasks) in dedicated terminal windows","archived":false,"fork":false,"pushed_at":"2025-11-13T16:28:15.000Z","size":21,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"release","last_synced_at":"2025-11-13T17:27:48.600Z","etag":null,"topics":["lua","neovim","neovim-plugin","nvim","nvim-plugin","tasks"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eumis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-19T04:51:25.000Z","updated_at":"2025-11-13T16:28:20.000Z","dependencies_parsed_at":"2025-06-19T10:42:11.523Z","dependency_job_id":"0210a0c4-ca1c-40a5-9a93-1c337095dbef","html_url":"https://github.com/eumis/tasks.nvim","commit_stats":null,"previous_names":["eumis/tasks.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eumis/tasks.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eumis%2Ftasks.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eumis%2Ftasks.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eumis%2Ftasks.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eumis%2Ftasks.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eumis","download_url":"https://codeload.github.com/eumis/tasks.nvim/tar.gz/refs/heads/release","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eumis%2Ftasks.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29548310,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lua","neovim","neovim-plugin","nvim","nvim-plugin","tasks"],"created_at":"2025-10-09T21:53:59.613Z","updated_at":"2026-02-17T15:31:28.133Z","avatar_url":"https://github.com/eumis.png","language":"Lua","readme":"# tasks.nvim\n\nRun shell commands(tasks) in dedicated terminal windows.\n\n## Installation\n\n- neovim required\n- install using your favorite plugin manager\n\n[lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n    \"eumis/tasks.nvim\"\n}\n```\n\n[mini.deps](https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-deps.md)\n\n```lua\nadd({\n    source = \"eumis/tasks.nvim\"\n})\n```\n\n[packer](https://github.com/wbthomason/packer.nvim)\n\n```lua\nuse {\n    \"eumis/tasks.nvim\"\n}\n```\n\n## Usage\n\n```lua\nlocal tasks = require \"tasks\"\n\n-- Add tasks\ntasks.add(\"test all\", \"nvim --no-plugin --headless -c 'PlenaryBustedDirectory lua/tests'\")\ntasks.add(\"test current file\", function(bufnr) return \"nvim --headless -c 'PlenaryBustedFile \" .. vim.fn.expand(\"#\" .. bufnr) .. \"'\" end)\n\n-- Run tasks\ntasks.run(\"test all\")\ntasks.run_last()\n\n-- Open task\ntasks.open(\"test all\")\ntasks.open_last()\n\n-- Open/close list of tasks\ntasks.toggle_list()\n\n-- Open list of tasks in telescope\nrequire(\"telescope\").extensions.tasks.all()\n```\n\n```vim\n:TasksRun test all\n:TasksRunLast\n:TasksOpen test current file\n:TasksOpenLast\n:TasksOpenList\n:TasksCloseList\n:TasksToggleList\n```\n\n## Config\n\n```lua\n-- default values\nrequire \"tasks\".setup {\n    run_keys = { \"r\", \"\u003ccr\u003e\" }, -- keys to run task from tasks list\n    open_keys = { \"o\" }, -- keys to open task buffer from tasks list\n    get_list_win_config = get_float_win_config, -- returns config for vim.api.nvim_open_win for list window\n    get_task_win_config = get_float_win_config, -- returns config for vim.api.nvim_open_win for task window\n    sort = \"order\", -- \"order\" - tasks in added order, \"recent\" - tasks run most recently are first\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feumis%2Ftasks.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feumis%2Ftasks.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feumis%2Ftasks.nvim/lists"}