lk/vim/vim-search.md
2025-03-26 14:07:27 +01:00

23 lines
408 B
Markdown

---
title: "vim search"
tags: [ "vim", "search" ]
---
Search for the next and or previous occurrence of the word under your cursor with `*` and `#`.
Search and replace the first 'one' found with 'two':
`:%s/one/two/`
Same, but replace 'one' globally:
`:%s/one/two/g`
Put quotes around every occurrence of `$HOME`:
`:%s/$HOME/"&"`
Same, but add curly brackets around `$HOSTNAME`:
`:%s/$HOSTNAME/{&}`