Answers for "vi search"

9

vim search for word

# Basic syntax:
/word # To search for the word "word"

# If a match is found, use n and N to navigate to next or previous matches

# Note, special characters like "/" need to be escaped with \. E.g., to
# 	search for path/to/directory you'd write:
/path\/to\/directory
Posted by: Guest on October-10-2020
0

vi search

To search forward, press / and to search backward press ?, type the search pattern and press Enter to run the search:
Posted by: Guest on April-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language