On this page, I’ve found this pattern
/\%>80v.\+
that helps in identifying lines longer than 80 characters by highlighting the characters after column 80.
I fail to understand its bit by bit explanation. Could you help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is quite simple, actually.
\%>80vstarts the match after the virtual column number 80, see:help %>..\+matches 1 or more of any character, see:help /.and:help \+.