24-Apr-2017
NOTE: This article is 3 years or older so its information may no longer be relevant. Read on at your own discretion! Comments for this article have automatically been locked, refer to the
FAQ for more details.
If you tend to use
vi for editing text files you've probably had a need to look for whitespace characters such as spaces or tabs. These are not typically visible since, well, they are empty space essentially. In
vi there is an option to show these characters so you can quickly tell what's a space and what's a tab. In addition this option will show the start of the line (
^) and end of the line (
$) using their standard regex characters.
To enable this option, type in the following in
vi...
If you no longer need to see whitespace and line terminators, type this in...
Here's an example from one of my personal projects. First a look at the file without whitespace visualisation:
Then, when whitespace is visualised...
You can see where tab stops are (represented by
^I). Spaces remain as spaces. You can also see where a beginning and end of line are.
-i
A quick disclaimer...
Although I put in a great effort into researching all the topics I cover, mistakes can happen.
If you spot something out of place, please do let me know.
All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle).
Use of any information contained in this blog post/article is subject to
this disclaimer.
Igor Kromin
Other posts you may like...