{"id":15343688,"url":"https://github.com/spacewander/vim-textobj-lua","last_synced_at":"2026-03-05T07:31:26.354Z","repository":{"id":71091968,"uuid":"83324459","full_name":"spacewander/vim-textobj-lua","owner":"spacewander","description":null,"archived":false,"fork":false,"pushed_at":"2017-04-27T02:05:33.000Z","size":27,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T07:39:30.035Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spacewander.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}},"created_at":"2017-02-27T15:17:54.000Z","updated_at":"2021-07-23T22:38:06.000Z","dependencies_parsed_at":"2023-03-06T01:30:23.946Z","dependency_job_id":null,"html_url":"https://github.com/spacewander/vim-textobj-lua","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"4a72b4a4b20ad9b490e02e4001bd1a471cecc8ed"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/spacewander/vim-textobj-lua","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spacewander%2Fvim-textobj-lua","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spacewander%2Fvim-textobj-lua/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spacewander%2Fvim-textobj-lua/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spacewander%2Fvim-textobj-lua/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spacewander","download_url":"https://codeload.github.com/spacewander/vim-textobj-lua/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spacewander%2Fvim-textobj-lua/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30114137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T03:40:26.266Z","status":"ssl_error","status_checked_at":"2026-03-05T03:39:15.902Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2024-10-01T10:48:43.951Z","updated_at":"2026-03-05T07:31:26.313Z","avatar_url":"https://github.com/spacewander.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-textobj-lua - Provide text objects for Lua code\n\n[![Build Status](https://travis-ci.org/spacewander/vim-textobj-lua.png)](https://travis-ci.org/spacewander/vim-textobj-lua)\n\n## Requirement\n\n[vim-textobj-user](https://github.com/kana/vim-textobj-user)\n\n## Usage\n\nThis plugin add following key mappings defined in Visual mode and Operator-pending mode.\n\n#### \\\u003cPlug\\\u003e(textobj-lua-block-a)\nDefault:\n```\nomap \u003cbuffer\u003e al \u003cPlug\u003e(textobj-lua-block-a)\nxmap \u003cbuffer\u003e al \u003cPlug\u003e(textobj-lua-block-a)\n```\n\nSelect a Lua block. More precisely, it selects lines\nbelong to:\n- for...do...end block\n- if...then...end block\n- while...do...end block\n- repeat...until... block\n- function...end block\n\n#### \\\u003cPlug\\\u003e(textobj-lua-block-i)\nDefault:\n```\nomap \u003cbuffer\u003e il \u003cPlug\u003e(textobj-lua-block-i)\nxmap \u003cbuffer\u003e il \u003cPlug\u003e(textobj-lua-block-i)\n```\n\nLike `\u003cPlug\u003e(textobj-lua-block-a)`, but it doesn't\ninclude start and end marks.\n\n#### \\\u003cPlug\\\u003e(textobj-lua-function-a)\nDefault:\n```\nomap \u003cbuffer\u003e af \u003cPlug\u003e(textobj-lua-function-a)\nxmap \u003cbuffer\u003e af \u003cPlug\u003e(textobj-lua-function-a)\n```\n\nSelect a Lua function.\n\n#### \\\u003cPlug\\\u003e(textobj-lua-function-i)\nDefault:\n```\nomap \u003cbuffer\u003e if \u003cPlug\u003e(textobj-lua-function-i)\nxmap \u003cbuffer\u003e if \u003cPlug\u003e(textobj-lua-function-i)\n```\n\nLike `\u003cPlug\u003e(textobj-lua-function-a)`, but it doesn't\ninclude function definition and end mark.\n\n#### \\\u003cPlug\\\u003e(textobj-lua-condition-a)\nDefault:\n```\nomap \u003cbuffer\u003e ac \u003cPlug\u003e(textobj-lua-condition-a)\nxmap \u003cbuffer\u003e ac \u003cPlug\u003e(textobj-lua-condition-a)\n```\n\nSelect a Lua condition region. More precisely, it selects\nwords contains:\n- for...do\n- if...then\n- while...do\n\n#### \\\u003cPlug\\\u003e(textobj-lua-condition-i)\nDefault:\n```\nomap \u003cbuffer\u003e ic \u003cPlug\u003e(textobj-lua-condition-i)\nxmap \u003cbuffer\u003e ic \u003cPlug\u003e(textobj-lua-condition-i)\n```\n\nLike `\u003cPlug\u003e(textobj-lua-condition-a)`, but it doesn't\ninclude start and end marks like 'for', 'if' and so on.\n\nFor further reading, please `:vert help textobj-lua`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspacewander%2Fvim-textobj-lua","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspacewander%2Fvim-textobj-lua","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspacewander%2Fvim-textobj-lua/lists"}