{"id":29922707,"url":"https://github.com/iquzart/toggleword.nvim","last_synced_at":"2026-04-04T20:56:58.069Z","repository":{"id":304620998,"uuid":"1019341475","full_name":"iquzart/toggleword.nvim","owner":"iquzart","description":"Smart word toggling under the cursor for Neovim","archived":false,"fork":false,"pushed_at":"2025-07-25T09:59:02.000Z","size":24,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-02T09:43:32.343Z","etag":null,"topics":["lazyvim","neovim","neovim-plugin","packer","toggle","toggleword"],"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/iquzart.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-07-14T07:19:45.000Z","updated_at":"2025-07-25T13:07:46.000Z","dependencies_parsed_at":"2025-07-14T10:06:36.711Z","dependency_job_id":"7d6e8919-689b-4b62-9fac-82517b9ebd8a","html_url":"https://github.com/iquzart/toggleword.nvim","commit_stats":null,"previous_names":["iquzart/toggleword.nvim"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/iquzart/toggleword.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iquzart%2Ftoggleword.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iquzart%2Ftoggleword.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iquzart%2Ftoggleword.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iquzart%2Ftoggleword.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iquzart","download_url":"https://codeload.github.com/iquzart/toggleword.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iquzart%2Ftoggleword.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31413462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":["lazyvim","neovim","neovim-plugin","packer","toggle","toggleword"],"created_at":"2025-08-02T09:01:36.232Z","updated_at":"2026-04-04T20:56:58.055Z","avatar_url":"https://github.com/iquzart.png","language":"Lua","readme":"\u003ch1 align=\"center\"\u003e\n toggleword.nvim\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\nA minimal Neovim plugin to toggle boolean-like words under your cursor.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/built%20with-neovim%20lua-blue.svg?style=flat-square\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/license/iquzart/toggleword.nvim?style=flat-square\" /\u003e\n  \u003cimg src=\"https://github.com/iquzart/toggleword.nvim/actions/workflows/test.yml/badge.svg\" /\u003e\n\u003c/p\u003e\n\n## Features\n\n- Toggle common values like `true` ⇄ `false`, `on` ⇄ `off`, etc.\n- Minimal, fast, and Lua-native.\n- Configurable keybinding.\n- Custom toggle pairs supported.\n\n## Installation\n\n### Lazy.nvim:\n\n```lua\n{\n  \"iquzart/toggleword.nvim\",\n   opts = {\n     key = \"\u003cleader\u003ett\" -- optional, defaults to \u003cleader\u003ett,\n   }\n}\n```\n\n### packer.nvim:\n\n```lua\nuse {\n  \"yourname/toggleword.nvim\",\n  config = function()\n    require(\"toggleword\").setup()\n  end,\n}\n```\n\n### Supported words\n\n```\n- true ⇄ false\n- on ⇄ off\n- enabled ⇄ disabled\n- yes ⇄ no\n- up ⇄ down\n- start ⇄ stop\n- open ⇄ close\n- allow ⇄ deny\n- accept ⇄ reject\n- read ⇄ write\n- push ⇄ pull\n- inbound ⇄ outbound\n- public ⇄ private\n- online ⇄ offline\n- local ⇄ remote\n- master ⇄ slave\n- primary ⇄ replica\n- active ⇄ passive\n- manual ⇄ automatic\n\n- prod ⇄ uat ⇄ dev ⇄ preprod (cyclical)\n```\n\n### Custom Toggle Pairs\n\nYou can override the default list:\n\n```lua\nrequire(\"toggleword\").setup {\n  key = \"\u003cleader\u003etw\",\n  toggle_groups = {\n    {\"start\", \"stop\"},\n    {\"open\",  \"close\"},\n    {\"active\", \"inactive\"},\n  }\n}\n```\n\n### Usage\n\n```\nPlace your cursor on a supported word and press \u003cleader\u003ett.\nIf the word matches a toggle pair, it will be replaced with the opposite.\n```\n","funding_links":[],"categories":["Utility","Recently Updated"],"sub_categories":["Cursorline","[Jul 29, 2025](/content/2025/07/29/README.md)"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiquzart%2Ftoggleword.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiquzart%2Ftoggleword.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiquzart%2Ftoggleword.nvim/lists"}