Answers for "vim search for word"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language