#vim
Read more stories on Hashnode
Articles with this tag
To search for the word 'expense' /\<expense\> / - search \< - word begins \> - word ends \ is acting as the escape character.
Vim mappings - to map keys on your keyboard to specific Vim actions Basics Open Vim and type :map <space> diw The above mapping maps space key to diw...
In insert mode, use ctrl+o to go to normal mode for just one command: ctrl+o h - move cursor left ctrl+o l - move cursor right ctrl+o j - move cursor...
Using the very popular vim-surround plugin, we can accomplish this task easily. Here, we have five anchor tags. <a href="#">Home</a> <a...
To Yank an entire HTML element, there are two easy ways: yat vaty
Use the + register in order to put from System Clipboard. Put, for the uninitiated, is the Vim lingo for paste. "+p