我已使用listchars
标记某些空格字符以进行视觉识别,但我想知道是否有类似的功能可以在vim中直观地标记缩进级别。类似于潜在折叠线的可见标记的东西。像这样:
#/bin/bash
for i in 1 2 3 ; do
. if [ true ] ; then
. . echo "there is an unobtrusive"
. . echo "dot character that marks"
. . echo "the indentation level."
. fi
done
我敢打赌,colorcolumn
的富有想象力的使用可以创造这个,但也许有一个预制的vim脚本已经这样做了。