{"id":14980378,"url":"https://github.com/jfishe/vimtabcompletion","last_synced_at":"2026-03-07T02:34:25.273Z","repository":{"id":162185992,"uuid":"282302511","full_name":"jfishe/VimTabCompletion","owner":"jfishe","description":"Vim Argument Completer for PowerShell","archived":false,"fork":false,"pushed_at":"2020-09-23T16:40:40.000Z","size":157,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-15T22:42:38.376Z","etag":null,"topics":["argumentcompleter","powershell","powershell-core","powershell-module","tabcompletion","vim","windows-powershell"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/jfishe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-07-24T19:41:33.000Z","updated_at":"2021-08-10T09:21:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"dfef2bf4-7d4e-4d6c-9208-c206fc3d8e88","html_url":"https://github.com/jfishe/VimTabCompletion","commit_stats":{"total_commits":106,"total_committers":1,"mean_commits":106.0,"dds":0.0,"last_synced_commit":"7c1412abd18ce828f18ae2b93877b91db2be8508"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfishe%2FVimTabCompletion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfishe%2FVimTabCompletion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfishe%2FVimTabCompletion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfishe%2FVimTabCompletion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jfishe","download_url":"https://codeload.github.com/jfishe/VimTabCompletion/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242005137,"owners_count":20056424,"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","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":["argumentcompleter","powershell","powershell-core","powershell-module","tabcompletion","vim","windows-powershell"],"created_at":"2024-09-24T14:01:40.983Z","updated_at":"2026-03-07T02:34:25.174Z","avatar_url":"https://github.com/jfishe.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VimTabCompletion\n\nPowershell Tab Completion for Vim\n\nAuthor: jdfenw@gmail.com\n\n[![Build status](https://ci.appveyor.com/api/projects/status/jonu96qiyjhqknba?svg=true)](https://ci.appveyor.com/project/jfishe/vimtabcompletion)\n\nVimTabCompletion was tested against Windows PowerShell 5.1 and PowerShell Core\n7.0.3 on Windows. Refer to\n[about_VimTabCompletion](VimTabCompletion/en-US/about_VimTabCompletion) for\nfeatures and limitations.\n\n## Installation\n\n### Vim\n\nVimTabCompletion requires Vim in `$env:PATH` or `$Env:VIMRUNTIME` and recommends\n[vim / vim-win32-installer](https://github.com/vim/vim-win32-installer).\n\nTo install with Chocolatey:\n\n```PowerShell\nchoco install vim\n```\n\n### Ctags\n\nVimTabCompletion requires `readtags` for tag completion and recommends\n[universal-ctags / ctags](https://github.com/universal-ctags/ctags).\n\nTo install with [Chocolatey](https://chocolatey.org/):\n\n```PowerShell\nchoco install universal-ctags\n```\n\n### Git\n\nVimTabCompletion requires [`git`](https://git-scm.com/) to locate the project\nroot for use by [ctags](#ctags).\n\nTo install with [Chocolatey](https://chocolatey.org/):\n\n```PowerShell\nchoco install git\n```\n\n### VimTabCompletion Module\n\nVimTabCompletion exports PowerShell function TabExpansion but does not\ninterfere with existing TabExpansion functions.\n\nTo install from [PowerShell Gallery](https://go.microsoft.com/fwlink/?linkid=2118474):\n\n```PowerShell\nFind-Module -Name VimTabCompletion\n\n# Version              Name                                Repository\n# -------              ----                                ----------\n# 1.2.0                VimTabCompletion                    PSGallery\n\n# Use AllowClobber to update TabExpansion\nInstall-Module -Name VimTabCompletion -AllowClobber\n\n# WARNING: The externally managed, dependent module 'vim' is not installed on\n# this computer. To use the current module 'VimTabCompletion', ensure that its\n# dependent module 'vim' is installed.\n# WARNING: The externally managed, dependent module 'ctags' is not installed on\n# this computer. To use the current module 'VimTabCompletion', ensure that its\n# dependent module 'ctags' is installed.\n```\n\nAdd `Import-Module VimTabCompletion` to `$Env:PROFILE`, because PowerShell does\nnot activate completion until a module member is called in a session. Native\ncommands like Vim are not module members.\n\n## Building\n\n`.\\build.ps1`\n\n## Publish to LocalRepo1\n\n`deploy.PSDeploy.ps1` uses a `PSRepository` defined by `Set-PSRepository`, e.g.,\n`LocalRepo1`. To publish to a different location than `PSGallery`, change to\nthe project root directory:\n\n``` powershell\n$Env:PublishToRepo = 'LocalRepo1' # Default: 'PSGallery'\n\n# Not required if you ran .\\build.ps1 in the current shell\n$Env:PSModulePath = \"$(pwd)\\_build_dependencies_\\;$env:PSModulePath\"\n\nSet-BuildEnvironment -Force\n\n# Default: 'Unknown' when building locally. Reset by build.ps1.\n$Env:BHBuildSystem = 'LocalRepo1'\n\n# Override\n.\\build.ps1 -Task Distribute\n```\n\n## Testing\n\nVimTabCompletion requires Vim and readtags.\n\n`.\\build.ps1 -Task Test`\n\n## Change Log\n\n[git-chglog / git-chglog](https://github.com/git-chglog/git-chglog) generates\n[CHANGELOG.md](CHANGELOG.md). The template is in\n[.chglog/CHANGELOG.tpl.md](.chglog/CHANGELOG.tpl.md).\n\n```bash\ngit-chglog -o CHANGELOG.md # To regenerate the change log\ngit-chglog 1.0.0..2.0.0 # To update with range of tags\n```\n\n## License\n\n- MIT License: [LICENSE](LICENSE)\n- [RamblingCookieMonster / BuildHelpers](https://github.com/RamblingCookieMonster/BuildHelpers)\n  created `Invoke-Git` under the MIT License:\n  [ThirdPartyNotice](ThirdPartyNotice.md#invoke-git)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfishe%2Fvimtabcompletion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjfishe%2Fvimtabcompletion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfishe%2Fvimtabcompletion/lists"}