{"id":30151795,"url":"https://github.com/iiibreakeriii/recursion.nvim","last_synced_at":"2026-05-07T01:05:38.722Z","repository":{"id":308530753,"uuid":"1033103141","full_name":"IIIBreakeRIII/ReCursion.nvim","owner":"IIIBreakeRIII","description":"A Neovim plugin for disassembling and decompiling C code directly in Neovim.","archived":false,"fork":false,"pushed_at":"2025-08-06T13:07:02.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-06T13:11:37.033Z","etag":null,"topics":["c","clang","clanguage","gcc","gcc-complier","neovim","neovim-plugin","nvim","nvim-plugin"],"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/IIIBreakeRIII.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}},"created_at":"2025-08-06T09:54:00.000Z","updated_at":"2025-08-06T13:07:36.000Z","dependencies_parsed_at":"2025-08-06T13:12:21.265Z","dependency_job_id":"a756de61-8d06-49bd-bb1e-ce2249a6f3a5","html_url":"https://github.com/IIIBreakeRIII/ReCursion.nvim","commit_stats":null,"previous_names":["iiibreakeriii/recursion.nvim"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/IIIBreakeRIII/ReCursion.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IIIBreakeRIII%2FReCursion.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IIIBreakeRIII%2FReCursion.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IIIBreakeRIII%2FReCursion.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IIIBreakeRIII%2FReCursion.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IIIBreakeRIII","download_url":"https://codeload.github.com/IIIBreakeRIII/ReCursion.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IIIBreakeRIII%2FReCursion.nvim/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269873158,"owners_count":24488993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"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":["c","clang","clanguage","gcc","gcc-complier","neovim","neovim-plugin","nvim","nvim-plugin"],"created_at":"2025-08-11T11:02:58.419Z","updated_at":"2026-05-07T01:05:38.697Z","avatar_url":"https://github.com/IIIBreakeRIII.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReCursion.nvim\n\nA Neovim plugin for disassembling and decompiling C code directly in Neovim.\\\nUses `objdump` for disassembly and `retdec` for decompilation.\n\n---\n\n## 📦 Installation\n\n### Lazy.nvim\n\n```lua\n{\n  \"IIIBreakeRIII/ReCursion.nvim\",\n  config = function()\n    require(\"ReCursion\").setup()\n  end,\n}\n```\n\n### Packer.nvim\n\n```lua\nuse {\n  \"IIIBreakeRIII/ReCursion.nvim\",\n  config = function()\n    require(\"ReCursion\").setup()\n  end,\n}\n```\n\n---\n\n## ⚡ Requirements\n\n- `gcc` (for compilation with debug symbols)\n- `objdump` (for assembly output)\n- `retdec` (for C decompilation, requires `retdec-decompiler` CLI)\n\nEnsure these are available in your `PATH`.\n\n---\n\n## 🚀 Usage\n\n```vim\n\" Disassemble current C file\n:ReCDisasm\n\n\" Decompile current C file\n:ReCDecompile\n\n\" Close result buffer\n;bd\n```\n\nThe output opens in a vertical split with syntax highlighting.\n\n---\n\n## 📂 How It Works\n\n1. Saves the current buffer to `/tmp/recursion_code.c`.\n2. Compiles with `-g -O0 -fno-builtin` to preserve debug info and disable built-ins.\n3. Runs `objdump -d -l -S` (or `otool -tvV` on macOS) for disassembly, or `retdec-decompiler` for decompilation in JSON-human mode.\n4. Reconstructs and displays results in a scratch buffer inside Neovim.\n\n---\n\n## 📜 License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiiibreakeriii%2Frecursion.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiiibreakeriii%2Frecursion.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiiibreakeriii%2Frecursion.nvim/lists"}