{"id":19594399,"url":"https://github.com/shovoalways/vim-code-editor","last_synced_at":"2025-04-23T07:52:35.687Z","repository":{"id":37630062,"uuid":"500000431","full_name":"shovoalways/VIM-code-editor","owner":"shovoalways","description":"This is my VIM code editor hand note, I like to explore new things and recently I found this editor interesting. ","archived":false,"fork":false,"pushed_at":"2022-06-05T04:48:29.000Z","size":5,"stargazers_count":13,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T22:51:15.430Z","etag":null,"topics":["code-editor","vim"],"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/shovoalways.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}},"created_at":"2022-06-05T04:33:55.000Z","updated_at":"2025-02-26T13:02:58.000Z","dependencies_parsed_at":"2022-09-18T16:02:43.873Z","dependency_job_id":null,"html_url":"https://github.com/shovoalways/VIM-code-editor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shovoalways%2FVIM-code-editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shovoalways%2FVIM-code-editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shovoalways%2FVIM-code-editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shovoalways%2FVIM-code-editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shovoalways","download_url":"https://codeload.github.com/shovoalways/VIM-code-editor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250395107,"owners_count":21423375,"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":["code-editor","vim"],"created_at":"2024-11-11T08:43:25.101Z","updated_at":"2025-04-23T07:52:35.668Z","avatar_url":"https://github.com/shovoalways.png","language":null,"readme":"# 🧑‍💻 VIM Code Editor\n\nVim is  a “modal” text editor based on the vi editor written by Bill Joy in the 1970s for a version of UNIX. \n\n\n## 💳 What is modal? \n\nWhen you’re using most word processors and text editors, the alphanumeric keys (i.e., a through z, 1 through 9) are only used to input those characters unless they’re modified by a control key. In Vim, the mode that the editor is in determines whether the alphanumeric keys will input those characters or move the cursor through the document.\n\n\n## 📖 The Basics of Moving in Vim\n\n- h  ⇒ moves the cursor one character to the left.\n- j  ⇒ moves the cursor down one line.\n- k  ⇒ moves the cursor up one line.\n- l (L)  ⇒ moves the cursor one character to the right.\n- 0  ⇒ moves the cursor to the beginning of the line.\n- $  ⇒ moves the cursor to the end of the line.\n- w ⇒ move forward one word.\n- b ⇒ move backward one word.\n- G ⇒ move to the end of the file.\n- gg ⇒ move to the beginning of the file.\n- `.  ⇒  move to the last edit.\n\n\n## 📝 Editing Vim Style\n\n- d ⇒ starts the delete operation.\n- dd ⇒ One line delete or cut\n- dw ⇒ will delete a word.\n- d0 ⇒ will delete to the beginning of a line.\n- d$ ⇒ will delete to the end of a line.\n- dgg ⇒ will delete to the beginning of the file.\n- dG ⇒ will delete to the end of the file.\n- u ⇒ will undo the last operation.\n- Ctrl-r ⇒ will redo the last undo.\n\n\n## 🔎 Searching and Replacing\n\n- /*text* *⇒* search for *text* in the document, going forward.\n- n *⇒* move the cursor to the next instance of the text from the last search. This will wrap to the beginning of the document.\n- N *⇒* move the cursor to the previous instance of the text from the last search.\n- ?*text ⇒* search for *text* in the document, going backwards.\n\n\n## 📑 Copying and Pasting\n\n- yy ⇒ To Copy a line\n- dd ⇒ To cut a line\n- p/P ⇒ Paste a line\n\n\n## 📚 Saving and Quitting\n\n- :q ⇒ Quite\n- :q! ⇒ Quite and not save\n- :w ⇒ Save\n- :wq ⇒ Save and Quite\n- :wq! ⇒ To save Read only File (If have permission)\n- :x ⇒ Save and Quite {Not Recommended} 😳\n\n\n## 🧑‍💻 Contributors\n- [@Ali Hossain](https://github.com/shovoalways/) 👉 Follow me on Github\n\n## 🥰 Follow me\n- [@Github](https://github.com/shovoalways/) \n- [@Facebook](https://facebook.com/shovoalways/) \n- [@Twitter](https://twitter.com/shovoalways/) \n- [@Instagram](https://instagram.com/shovoalways/) \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshovoalways%2Fvim-code-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshovoalways%2Fvim-code-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshovoalways%2Fvim-code-editor/lists"}