发布于 2016-04-14 01:02:52 | 164 次阅读 | 评论: 0 | 来源: 网友投递
VIM Linux下文本编辑器
Vim是一个类似于Vi的文本编辑器,是从 vi 发展出来的一个文本编辑器。代码补完、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。和Emacs并列成为类Unix系统用户最喜欢的编辑器。
vim 8.0 即将发布了!
该版本预计会带来以下新功能:
Asynchronous I/O support, channels ~
Vim can now exchange messages with another process in the background. The
message are received and handled while Vim is waiting for a character. See
|channel-demo| for an example, communicating with a Python server.
Closely related to channels is JSON support. JSON is widely supported and can
easily be used for inter-process communication, allowing for writing a server
in any language. The functions to use are |json_encode()| and |json_decode()|.
详情请看这里。