我安装了leafgarland-vim插件,当我保存.ts文件时,我总是收到以下警告:
我尝试添加let g:typescript_compiler_options="--experimentalDecorators"
到我的~/.vimrc中,并且在第一次输入“:”之后,我还从 vim 内部输入了该命令。我什至可以做到:echo g:typescript_compiler_options
,它会返回--experimentalDecorators
。然而,每次我去保存时,我都会收到这个错误。
我怎样才能让这个错误消失?--experimentalDecorators
只是似乎没有完成它的工作。
编辑:
我从 vim 内部尝试了这个:
:let g:typescript_compiler_options = '--dnwejuidbnwejudbn'
代码仍然编译,并带有相同的警告。我不认为let g:typescript_compiler_options实际上在做任何事情。