{"id":22388521,"url":"https://github.com/aioutecism/amvim-for-vscode","last_synced_at":"2025-04-04T12:10:11.732Z","repository":{"id":42346074,"uuid":"47174494","full_name":"aioutecism/amVim-for-VSCode","owner":"aioutecism","description":"The Vim mode for Visual Studio Code(vscode) that works as expected.","archived":false,"fork":false,"pushed_at":"2024-08-31T02:48:19.000Z","size":1419,"stargazers_count":459,"open_issues_count":46,"forks_count":42,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-01T22:53:07.709Z","etag":null,"topics":["extension","keybindings","vim","vscode"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items/auiworks.amvim","language":"TypeScript","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/aioutecism.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2015-12-01T07:58:00.000Z","updated_at":"2025-03-30T00:06:54.000Z","dependencies_parsed_at":"2024-10-26T08:36:05.805Z","dependency_job_id":"50aa1ac7-aa83-46ef-997e-919a8bd43efd","html_url":"https://github.com/aioutecism/amVim-for-VSCode","commit_stats":null,"previous_names":[],"tags_count":101,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aioutecism%2FamVim-for-VSCode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aioutecism%2FamVim-for-VSCode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aioutecism%2FamVim-for-VSCode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aioutecism%2FamVim-for-VSCode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aioutecism","download_url":"https://codeload.github.com/aioutecism/amVim-for-VSCode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247174456,"owners_count":20896078,"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":["extension","keybindings","vim","vscode"],"created_at":"2024-12-05T02:14:10.488Z","updated_at":"2025-04-04T12:10:11.711Z","avatar_url":"https://github.com/aioutecism.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# amVim for VS Code\n\n![icon](images/icon.png)\n\nThe [Vim](http://www.vim.org/) mode for [Visual Studio Code](https://code.visualstudio.com/) that works as expected.\n\n\n## Key features\n\n- Vim style keybindings \u0026 looks\n- Normal, Visual and Visual Line modes support\n- Multi-cursor support\n- Works with VS Code's default behaviors\n\n\n## Not supported\n\n- `:` started commands: Only a few are supported now.\n- Visual Block mode: Please use multi-cursor instead for now.\n- Custom keybindings: On the roadmap.\n\n\n## Commands\n\nCheck the list [here](https://github.com/aioutecism/amVim-for-VSCode/issues/1).\n\n\n## Configuration\n\nYou can override default configurations in\n[User and Workspace Settings](https://code.visualstudio.com/docs/getstarted/settings).\n\n#### `amVim.bindCtrlCommands`\n\n`Boolean`, Default: `true`\n\nSet to `false` to disable `Ctrl+\u003ckey\u003e` keybindings.\n\n#### `amVim.mimicVimSearchBehavior`\n\n`Boolean`, Default: `true`\n\nSet to `false` to keep VSCode's keybinding when searching.\n\n#### `amVim.startInInsertMode`\n\n`Boolean`, Default: `false`\n\nSet to `true` to start in Insert mode when opening files.\n\n#### `amVim.smartRelativeLineNumbers`\n\n`Boolean`, Default: `false`\n\nSet to `true` to will make line numbers relative when not in Insert mode.\n\n#### `amVim.useSystemClipboard`\n\n`Boolean`, Default: `false`\n\nSet to `true` to copy to and paste from the system clipboard.\n\n#### `amVim.vimStyleNavigationInListView`\n\n`Boolean`, Default: `true`\n\nSet to `false` to disable Vim style navigation in sidebar.\n\n\n## Contexts\n\nYou can make use of \n[when clause contexts](https://code.visualstudio.com/api/references/when-clause-contexts)\nto construct keybindings that only apply in specific scenarios.\n\n#### `amVim.mode`\n\n`String`, Possible values: `NORMAL`, `INSERT`, `VISUAL`, `VISUAL LINE`\n\nTracks the current editing mode. For backward compatibility, `REPLACE` mode will appear as `INSERT`.\n\n#### `amVim.waitingForInput`\n\n`Boolean`\n\nSet to `true` when amVim is waiting for further input to match a command, otherwise `false`.\nThis can be used to set up keybindings that perform a custom function when keys are pressed\nindependently, without overriding the default Vim style behavior for those keys when\nprefixed.\n\nFor example, the following configuration will redefine Vim style navigation keys `j` and `k`\nto move the native cursor, stepping over folded code and stepping into wrapped lines, while\nstill allowing longer Vim commands like `3j` to work as expected:\n\n```json\n[\n  {\n    \"key\": \"j\",\n    \"command\": \"cursorDown\",\n    \"when\": \"editorTextFocus \u0026\u0026 amVim.mode == 'NORMAL' \u0026\u0026 !amVim.waitingForInput\"\n  },\n  {\n    \"key\": \"k\",\n    \"command\": \"cursorUp\",\n    \"when\": \"editorTextFocus \u0026\u0026 amVim.mode == 'NORMAL' \u0026\u0026 !amVim.waitingForInput\"\n  }\n]\n```\n\n\n## Contributing\n\nFeel free to open [issues][] to report bugs or require features.\n\n[Pull requests][] are welcomed too! See VS Code's official instructions about:\n\n- [Extension API][]\n- [Testing Extensions][]\n  - Protip: change `suite(` to `suite.only(` in a test file to run only a\n    single test suite at a time. This saves quite a lot of time. Remember to\n    remove the `.only` part before making a Git commit.\n\n[issues]: https://github.com/aioutecism/amVim-for-VSCode/issues\n[Pull requests]: https://github.com/aioutecism/amVim-for-VSCode/pulls\n[Extension API]: https://code.visualstudio.com/api\n[Testing Extensions]: https://code.visualstudio.com/api/working-with-extensions/testing-extension\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faioutecism%2Famvim-for-vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faioutecism%2Famvim-for-vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faioutecism%2Famvim-for-vscode/lists"}