{"id":26696229,"url":"https://github.com/tangoman75/vscode-command-cycle","last_synced_at":"2026-04-17T06:34:09.676Z","repository":{"id":284174176,"uuid":"954069289","full_name":"TangoMan75/vscode-command-cycle","owner":"TangoMan75","description":"Loop through the repeated execution of a user-defined sequence of commands with every press of the same keybinding","archived":false,"fork":false,"pushed_at":"2025-07-08T14:24:58.000Z","size":1532,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T15:34:53.332Z","etag":null,"topics":["command","cycle","keybinding","loop","repeat","sequence","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/TangoMan75.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,"zenodo":null}},"created_at":"2025-03-24T14:13:36.000Z","updated_at":"2025-07-08T14:24:56.000Z","dependencies_parsed_at":"2025-06-15T02:37:43.918Z","dependency_job_id":null,"html_url":"https://github.com/TangoMan75/vscode-command-cycle","commit_stats":null,"previous_names":["tangoman75/vscode-command-cycle"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/TangoMan75/vscode-command-cycle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fvscode-command-cycle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fvscode-command-cycle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fvscode-command-cycle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fvscode-command-cycle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TangoMan75","download_url":"https://codeload.github.com/TangoMan75/vscode-command-cycle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fvscode-command-cycle/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266093124,"owners_count":23875549,"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":["command","cycle","keybinding","loop","repeat","sequence","vscode","vscode-extension"],"created_at":"2025-03-26T20:18:14.958Z","updated_at":"2026-04-17T06:34:09.627Z","avatar_url":"https://github.com/TangoMan75.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![GH language](https://img.shields.io/github/languages/top/TangoMan75/vscode-command-cycle)\n[![GH release](https://img.shields.io/github/v/release/TangoMan75/vscode-command-cycle)](https://github.com/TangoMan75/vscode-command-cycle/releases)\n[![GH license](https://img.shields.io/github/license/TangoMan75/vscode-command-cycle)]((https://github.com/TangoMan75/vscode-command-cycle/blob/master/LICENSE))\n[![GH stars](https://img.shields.io/github/stars/TangoMan75/vscode-command-cycle)](https://github.com/TangoMan75/vscode-command-cycle/stargazers)\n[![VSCode Extension CI](https://github.com/TangoMan75/vscode-command-cycle/workflows/VSCode%20Extension%20CI/badge.svg)](https://github.com/TangoMan75/vscode-command-cycle/actions/workflows/shellcheck.yml)\n![Visitors](https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fgithub.com%2FTangoMan75%2Fvscode-command-cycle\u0026labelColor=%23697689\u0026countColor=%2337d67a\u0026style=flat)\n\n🔁 TangoMan vscode-command-cycle\n================================\n\nThe **TangoMan vscode-command-cycle** extension for _Visual Studio Code_ enables the repeated execution of a user-defined sequence of commands. These command sequences are configured within the `keybindings.json` file, providing a customizable workflow.\n\n🚀 Installation\n---------------\n\n### Step 1: Install the Extension\n\nLaunch _VSCode Quick Open_ (`Ctrl+P`), paste the following command, and press `Enter`.\n\n```\next install TangoMan75.command-cycle\n```\n\nOr install the extension via the command line:\n\n```bash\ncode --install-extension TangoMan75.command-cycle\n```\n\nOr install the `.vsix` package manually:\n\n1. Download the source code.\n2. Open the _Extensions View_ in _VSCode_.\n3. Click on the Extensions icon in the _Activity Bar_.\n4. Click on the three-dot icon (`...`) in the top-right corner.\n5. From the dropdown menu that appears, select \"`Install from VSIX...`\".\n\n### Step 2: Configure Keybindings\n\nEdit your _VSCode_ keybindings configuration in the `keybindings.json` file to define the commands to cycle through.\n\nFor example, while using the `wmaurer.change-case` extension, you can cycle through various text case transformations (e.g., sentence case, title case, camelCase, etc.) by pressing `Ctrl+K Ctrl+T` repeatedly.\n\n```json\n{\n    \"key\": \"ctrl+k ctrl+t\",\n    \"command\": \"command-cycle.loop\",\n    \"args\": {\n        \"commands\": [\n            \"extension.changeCase.sentence\",\n            \"extension.changeCase.title\",\n            \"extension.changeCase.camel\",\n            \"extension.changeCase.pascal\"\n        ]\n    },\n    \"when\": \"editorTextFocus \u0026\u0026 !editorReadonly\"\n},\n```\n\n![Loop through case example](./images/vscode-command-cycle.gif)\n\nReplace the commands in the `commands` array with the ones you want to cycle through.\n\n🔥 Usage\n--------\n\n1. Press the keybinding you configured (e.g., `Ctrl+K Ctrl+T`).\n2. The extension will execute the commands in the order specified in the `commands` array.\n3. Each subsequent key press will execute the next command in the cycle.\n\n📝 Notes\n--------\n\n- Ensure that the commands you specify in the `commands` array are valid Visual Studio Code commands.\n- You can find available commands by opening the Command Palette (`Ctrl+Shift+P`) and typing `\u003e`.\n\n🤝 Contributing\n---------------\n\nThank you for your interest in contributing to **TangoMan vscode-command-cycle**.\n\nPlease review the [Code of Conduct](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CODE_OF_CONDUCT.md) and [Contribution Guidelines](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CONTRIBUTION.md) before starting to work on any features.\n\nIf you want to open an issue, please check first if it has not been [reported already](https://github.com/TangoMan75/vscode-command-cycle/issues) before creating a new one.\n\n📜 License\n----------\n\nCopyright (c) 2025 \"Matthias Morin\" \u0026lt;mat@tangoman.io\u0026gt;\n\n[![License](https://img.shields.io/badge/Licence-MIT-green.svg)](LICENSE)  \nDistributed under the MIT license.\n\nIf you like **TangoMan vscode-command-cycle**, please star, follow, or tweet:\n\n[![GitHub stars](https://img.shields.io/github/stars/TangoMan75/vscode-command-cycle?style=social)](https://github.com/TangoMan75/vscode-command-cycle/stargazers)  \n[![GitHub followers](https://img.shields.io/github/followers/TangoMan75?style=social)](https://github.com/TangoMan75)  \n[![Twitter](https://img.shields.io/twitter/url?style=social\u0026url=https%3A%2F%2Fgithub.com%2FTangoMan75%2Fvscode-command-cycle)](https://twitter.com/intent/tweet?text=Wow:\u0026url=https%3A%2F%2Fgithub.com%2FTangoMan75%2Fvscode-command-cycle)\n\n... And check out my other cool projects.\n\n👋 Let's Build Your Next Project Together !\n-------------------------------------------\n\nLooking for an experienced Full-Stack Partner ?\n\nClean code. Clear communication.\n\nFrom first sketch to final launch, I've got your back.\n\n[![tangoman.io](https://img.shields.io/badge/✉️%20Get%20in%20touch%20now%20!-FD9400?style=for-the-badge)](https://tangoman.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangoman75%2Fvscode-command-cycle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftangoman75%2Fvscode-command-cycle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangoman75%2Fvscode-command-cycle/lists"}