[Vim]Search for an exact match

Sun Feb 16

Vim practice

Author:Noritaka

Astroのロゴ。
Search for an exact match
copy and paste the below text and type some commands like below.

---
1. /\v<and> <CR>3dd
  (/\v search very magic mode)
  (<and> searches for the exact word 'and', without matching words like 'ander'  )
---
and
ander
andoroid

Vim