{"id":22373760,"url":"https://github.com/davidisfelix/vscodevim-bindings","last_synced_at":"2025-09-09T07:38:39.819Z","repository":{"id":265409197,"uuid":"895933376","full_name":"davidisfelix/vscodevim-bindings","owner":"davidisfelix","description":"VS Code Vim bindings I use often.","archived":false,"fork":false,"pushed_at":"2024-11-29T08:27:06.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T17:03:34.880Z","etag":null,"topics":["vim","vscode","vscodevim"],"latest_commit_sha":null,"homepage":"","language":null,"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/davidisfelix.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,"zenodo":null}},"created_at":"2024-11-29T08:02:25.000Z","updated_at":"2024-11-29T08:34:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"251ac378-7405-4760-b5a8-23c6fbd7e07b","html_url":"https://github.com/davidisfelix/vscodevim-bindings","commit_stats":null,"previous_names":["davidisfelix/vscodevim-bindings"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/davidisfelix/vscodevim-bindings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidisfelix%2Fvscodevim-bindings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidisfelix%2Fvscodevim-bindings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidisfelix%2Fvscodevim-bindings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidisfelix%2Fvscodevim-bindings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davidisfelix","download_url":"https://codeload.github.com/davidisfelix/vscodevim-bindings/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidisfelix%2Fvscodevim-bindings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274261367,"owners_count":25251946,"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","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["vim","vscode","vscodevim"],"created_at":"2024-12-04T21:14:08.198Z","updated_at":"2025-09-09T07:38:39.800Z","avatar_url":"https://github.com/davidisfelix.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📜 VS Code Vim Commands Repository\n\nWelcome to my personal repository where I store all the most commonly used **VS Code Vim commands**. This is a collection of useful shortcuts and commands that enhance my productivity when using **Vim** inside **VS Code**.\n\n\n## 📝 Table of Contents\n\n- [🔑 Basic Commands](#-basic-commands)\n- [🎯 Text Object Commands](#-text-object-commands)\n- [🔄 Search and Replace](#-search-and-replace)\n- [📜 Command List](#-command-list)\n\n---\n\n## 🔑 Basic Commands\n\nThese are some of the essential Vim commands I use frequently in **VS Code**:\n\n- `:w` — Save the file 💾\n- `:q` — Quit the editor ❌\n- `:wq` — Save and quit 💾❌\n- `:x` — Save and close if there are changes 💾🔒\n- `:e \u003cfile\u003e` — Open a file 📂\n\n---\n\n## 🎯 Text Object Commands\n\nText objects allow you to quickly select or manipulate parts of your text.\n\n- `yi\"` — Yank everything **inside double quotes** (`\"`) 📋\n- `ya\"` — Yank everything **inside double quotes** **including the quotes** 📝\n- `yi'` — Yank everything **inside single quotes** (`'`) 📋\n- `ya'` — Yank everything **inside single quotes** **including the quotes** 📝\n- `vi\"` — Visually select everything **inside double quotes** 🔲\n- `va\"` — Visually select everything **inside double quotes** **including the quotes** 🔲\n- `D` - Delete everything after cursor\n\n---\n\n## 🔄 Search and Replace\n\nSearch and replace is made easy with Vim commands:\n\n- `/text` — Search for the text `text` 🔍\n- `:%s/old/new/g` — Replace all occurrences of `old` with `new` in the file 🔄\n- `:noh` — Remove search highlight 🚫\n\n---\n\n## 📜 Command List\n\nHere’s a list of all the commands I’ve stored in this repo:\n\n- `yi\"` — Yank everything inside double quotes 📋\n- `ya\"` — Yank everything inside double quotes **including the quotes** 📝\n- `yi'` — Yank everything inside single quotes 📋\n- `ya'` — Yank everything inside single quotes **including the quotes** 📝\n- `vi\"` — Select everything inside double quotes 🔲\n- `va\"` — Select everything inside double quotes **including the quotes** 🔲\n- `:w` — Save the file 💾\n- `:q` — Quit the editor ❌\n- `:wq` — Save and quit 💾❌\n- `:x` — Save and close if there are changes 💾🔒\n- `:e \u003cfile\u003e` — Open a file 📂\n- `/text` — Search for the text `text` 🔍\n- `:%s/old/new/g` — Replace all occurrences of `old` with `new` 🔄\n- `:noh` — Remove search highlight 🚫\n\n## Super helpful\n### Copy and replace text inside quotes\n - `yi\"` to yank text inside double quotes\n - `:%s/` to search and replace\n - `ctrl + r` then `\"` to past yanked text\n - `/\u003ctext-to-replace-with\u003e` and `enter`\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidisfelix%2Fvscodevim-bindings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavidisfelix%2Fvscodevim-bindings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidisfelix%2Fvscodevim-bindings/lists"}