JLJavid Loneinjavidlone.hashnode.dev·Jan 22, 2023 · 3 min readHow do I find and replace in vim?In Vim, you can find and replace text using the following commands: To find a specific word or phrase, use the / command followed by the word or phrase you want to find. For example, to find the word "example," type /example and press Enter. To fin...00
JLJavid Loneinjavidlone.hashnode.dev·Dec 25, 2022 · 2 min read10 tips for improving your code editing experience with VimUse the h, j, k, and l keys to move the cursor around the code. These keys correspond to the left, down, up, and right arrow keys, respectively, and are easier to reach when your hands are positioned on the home row of the keyboard. Use the w, e, an...00
JLJavid Loneinjavidlone.hashnode.dev·Dec 9, 2022 · 1 min readTop 10 things to remember for text manipulation in VimVim has been my favorite editor for a long and here I am going to post some of the cool shortcuts that you can use for Text Manipulation. Text Manipulation Pressing gg goes to the top of the file. G moves to the bottom of the file. Pressing `u` wi...00