Shailesh Kumar Sundram
Shailesh Kumar Sundram

Shailesh Kumar Sundram

Follow
homeVim TipsmacOSJavaScriptGitJavaScript Interview Questionsbadges
Series

Vim Tips

All the Vim tips that you need at one place.

Articles in this series

How to Search for a Specific Word in Vim

Dec 18, 20221 min read

To search for the word 'expense' /\<expense\> / - search \< - word begins \> - word ends \ is acting as the escape character.

How to Search for a Specific Word in Vim

Learn Vim Mappings in 5 minutes

Dec 18, 20222 min read

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...

Learn Vim Mappings in 5 minutes

How to Traverse in Insert Mode in Vim

Aug 6, 20221 min read

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...

How to Traverse in Insert Mode in Vim

How to Wrap HTML Element(s) With Another HTML Element in Vim

Oct 2, 20211 min read

Using the very popular vim-surround plugin, we can accomplish this task easily. Here, we have five anchor tags. <a href="#">Home</a> <a...

How to Wrap HTML Element(s) With Another HTML Element in Vim

How to Yank an Entire HTML Element in Vim

Oct 2, 20211 min read

To Yank an entire HTML element, there are two easy ways: yat vaty

How to Yank an Entire HTML Element in Vim

How to Put Into Vim From System Clipboard

Oct 2, 20211 min read

Use the + register in order to put from System Clipboard. Put, for the uninitiated, is the Vim lingo for paste. "+p

How to Put Into Vim From System Clipboard