Vim 插件之 coc-nvim
什么是 coc-nvim
coc-nvim 是一款支持 LSP 的插件,这个插件使 vim 具备了代码补全,语法检查,标签跳转等功能。
什么是 LSP
The Language Server Protocol (LSP) defines the protocol used between an editor or IDE and a language server that provides language features like auto complete, go to definition, find all references etc.
首先 LSP 是一种协议,定义了编辑器和语言服务器的交互。而语言服务器可以通过这种交互为编辑器提供对应语言的功能,诸如:自动补全,跳转到定义,找到引用位置等等。