我在vim中打开了标尺但列值是由连字符分隔的两个数字。例如1-8。
带连字符的列值究竟在vim中意味着什么?
答案 0 :(得分:3)
查看:h ruler
相关部分复制在
下面If the number of characters displayed is different from the number of
bytes in the text (e.g., for a TAB or a multi-byte character), both
the text column (byte number) and the screen column are shown,
separated with a dash.
1,1-8
第一个是光标在第1行.1-8意味着光标位于第一个文本列(即字符串中的第一个字符),并且它是第8个可视列。因此,我们可以得出结论,您的光标位于tabstop和shiftwidth设置为8的选项卡上。