{"id":20176301,"url":"https://github.com/apayu/nvim-elixir-inspect","last_synced_at":"2026-01-25T20:10:52.423Z","repository":{"id":262620385,"uuid":"887831421","full_name":"apayu/nvim-elixir-inspect","owner":"apayu","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-13T11:20:01.000Z","size":1,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T21:24:44.987Z","etag":null,"topics":["elixir","neovim"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apayu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-11-13T11:09:14.000Z","updated_at":"2024-11-27T03:54:08.000Z","dependencies_parsed_at":"2024-11-13T12:24:13.521Z","dependency_job_id":"d1cd17a3-1f07-42b2-96b9-d8dddba887d5","html_url":"https://github.com/apayu/nvim-elixir-inspect","commit_stats":null,"previous_names":["apayu/nvim-elixir-inspect"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/apayu/nvim-elixir-inspect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apayu%2Fnvim-elixir-inspect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apayu%2Fnvim-elixir-inspect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apayu%2Fnvim-elixir-inspect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apayu%2Fnvim-elixir-inspect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apayu","download_url":"https://codeload.github.com/apayu/nvim-elixir-inspect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apayu%2Fnvim-elixir-inspect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28757714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: 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":["elixir","neovim"],"created_at":"2024-11-14T02:08:24.188Z","updated_at":"2026-01-25T20:10:52.398Z","avatar_url":"https://github.com/apayu.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvim-elixir-inspect\n\nA Neovim plugin that helps you debug Elixir code by quickly inserting `IO.inspect/2` statements with the current function name as label.\n\n## Features\n\n- Quickly insert `IO.inspect` statements with customizable prefix symbol\n- Automatically detects and uses current function name as label\n- Maintains proper indentation\n\n## Installation\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  \"apayu/nvim-elixir-inspect\",\n  config = function()\n    require(\"elixir-inspect\").setup()\n  end,\n}\n```\n\nUsing [packer.nvim](https://github.com/wbthomason/packer.nvim):\n\n```lua\nuse {\n  \"apayu/nvim-elixir-inspect\",\n  config = function()\n    require(\"elixir-inspect\").setup()\n  end\n}\n```\n\n## Configuration\n\nThe plugin comes with these defaults:\n\n```lua\nrequire(\"elixir-inspect\").setup({\n  -- Symbol prefix for IO.inspect output\n  symbol = \"🔍 \u003e\u003e\u003e\u003e\u003e\u003e\u003e\",\n  -- Default insert mode keymap\n  keymap_insert = \"\u003cC-e\u003ei\"\n})\n```\n\n## Usage\n\n### Via Command\n\nUse the `:InsertIOInspect` command to insert an IO.inspect statement at the current cursor position.\n\n### Via Keymap\n\nIn insert mode, press `\u003cC-e\u003ei` (or your configured keymap) to insert an IO.inspect statement.\n\n### Example Output\n\nIf you're in a function named `process_data`, the plugin will insert:\n\n```elixir\nIO.inspect(\"🔍 \u003e\u003e\u003e\u003e\u003e\u003e\u003e\", label: \"process_data\")\n```\n\nThe inserted statement will maintain the current line's indentation.\n\n## Customization\n\nYou can customize the plugin behavior by passing options to the setup function:\n\n```lua\nrequire(\"elixir-inspect\").setup({\n  -- Change the inspect prefix symbol\n  symbol = \"DEBUG \u003e\u003e\u003e\",\n  -- Change or disable the insert mode keymap\n  keymap_insert = \"\u003cC-x\u003ei\", -- or set to false to disable\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapayu%2Fnvim-elixir-inspect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapayu%2Fnvim-elixir-inspect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapayu%2Fnvim-elixir-inspect/lists"}