Vim 在空白处倒置问号

Vim 在空白处倒置问号

我已经安装了spf13-vim在我的装有 Ubuntu 的 Vagrant 机器上。

问题是,当我登录 Vagrantvagrant ssh并运行 Vim 时,我在输入空格或制表符时会看到所有这些颠倒的问号。

在 ~/.vimrc 中我有:

scriptencoding utf-8
set encoding = utf-8
set termencoding = utf-8

答案1

我想你可以试试:set nolist,它告诉 vim 不要直观地列出类似空格的字符。你可以查看:h 'list':h 'listchars'以获取进一步的参考。

相关内容