问答详情
源自:4-3 vim美化插件,让你的 vim 与众不同

缩进线条在mac上不可用

安装好以后,在mac中并不会显示缩进线

提问者:30K必胜 2019-08-03 21:44

个回答

  • 慕粉2339439493
    2021-05-15 21:22:18

    你需要通过brew install macvim 的wim 才能显示

  • Sdzer
    2020-01-09 15:51:52

    因为坐着网页写了:This plugin is used for displaying thin vertical lines at each indentation level for code indented with spaces. For code indented with tabs I think there is no need to support it, because you can use :set list lcs=tab:\|\ (here is a space).

    大意就是使用tab缩进的不支持。以下是我在找到的解决方法,复制进自己的_vinrc文件:

    "设置tab缩进为4个空格
    set ts=4
    set expandtab
    set autoindent
    set list
    set lcs=tab:\|\-

  • 慕移动2795088
    2019-10-15 23:17:01

    我也遇到这个问题了,求解答