Reputation: 11914
When I'm editing plain text files (not any code files), sometime I see signs like @ and ~ at the bottom in different colors as I scroll, and sometimes they disappear. What do they mean in vim?
Upvotes: 2
Views: 177
Reputation: 838
The @ sign appears at the bottom when you have a really long line of code (or text) that continues (wraps) to the next line.
the ~ sign is just a place holder that says nothing is on that line (not even spaces or tabs or returns)
Upvotes: 4