{"id":23021050,"url":"https://github.com/1riz/telescope-macros.nvim","last_synced_at":"2026-03-08T04:31:39.849Z","repository":{"id":201378212,"uuid":"707335669","full_name":"1riz/telescope-macros.nvim","owner":"1riz","description":"telescope.nvim extension to manage macros (WIP)","archived":false,"fork":false,"pushed_at":"2025-08-03T17:13:31.000Z","size":15,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-03T19:08:09.286Z","etag":null,"topics":["lua","macros","neovim","nvim","nvim-plugin","registers","telescope-extension"],"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/1riz.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}},"created_at":"2023-10-19T17:26:25.000Z","updated_at":"2025-08-03T17:13:34.000Z","dependencies_parsed_at":"2023-11-28T17:26:44.057Z","dependency_job_id":null,"html_url":"https://github.com/1riz/telescope-macros.nvim","commit_stats":null,"previous_names":["1riz/telescope-macros.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/1riz/telescope-macros.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1riz%2Ftelescope-macros.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1riz%2Ftelescope-macros.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1riz%2Ftelescope-macros.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1riz%2Ftelescope-macros.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1riz","download_url":"https://codeload.github.com/1riz/telescope-macros.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1riz%2Ftelescope-macros.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30245217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:58:18.660Z","status":"online","status_checked_at":"2026-03-08T02:00:06.215Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","macros","neovim","nvim","nvim-plugin","registers","telescope-extension"],"created_at":"2024-12-15T12:16:16.137Z","updated_at":"2026-03-08T04:31:39.831Z","avatar_url":"https://github.com/1riz.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# telescope-macros.nvim\n\n[![GitHub Workflow](https://github.com/1riz/telescope-macros.nvim/actions/workflows/main.yml/badge.svg)](https://github.com/1riz/telescope-macros.nvim/actions/workflows/main.yml)\n\nAn extension for [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)\nthat allows you to manage your macros.\n\n![Demo](./demo.png)\n\n:warning: **This plugins is under development.**\n\n## Requirements\n\n- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)\n\n## Installation\n\n### [Lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n  \"1riz/telescope-macros.nvim\",\n  config = function()\n    require(\"telescope\").load_extension \"macros\"\n  end\n}\n```\n\n## Usage\n\n```vim\n:Telescope macros\n```\n\nor map to a key:\n\n```lua\nvim.keymap.set(\"n\", \"\u003cspace\u003em\", \"\u003ccmd\u003eTelescope macros\u003ccr\u003e\")\n```\n\n## Default mappings (normal and insert mode):\n\n| Key     | Description                         |\n| ------- | ----------------------------------- |\n| `\u003ccr\u003e`  | execute macro                       |\n| `\u003cc-e\u003e` | edit macro                          |\n| `\u003cc-t\u003e` | append comment                      |\n| `\u003cc-k\u003e` | clear macro                         |\n| `\u003cc-a\u003e` | clear all macros                    |\n| `\u003cc-d\u003e` | delete macro                        |\n| `\u003cc-r\u003e` | delete all macros                   |\n\n## Configuration\n\nSee [setup structure](https://github.com/nvim-telescope/telescope.nvim#telescope-setup-structure) for full details on configuring Telescope pickers.\n\n- `prompt_title` (default: `\"Macros\"`)\n\n  Defines the title of the prompt window.\n\n- `num_registers` (default: `12`)\n\n  Number of registers to be managed by this extension.\n\n### Default configuration\n\n```lua\ntelescope.setup {\n  extensions = {\n    macros = {\n      prompt_title = \"Macros\",\n      num_registers = 12,\n      theme = \"dropdown\",\n      layout_strategy = \"center\",\n      layout_config = {\n        height = 0.20,\n        width = 0.50\n      }\n    }\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1riz%2Ftelescope-macros.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1riz%2Ftelescope-macros.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1riz%2Ftelescope-macros.nvim/lists"}