diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-02 20:47:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-02 20:47:49 +0100 |
commit | f57969a20a4398f56e3028a6cc1102f9f9286ccf (patch) | |
tree | d9eec37321639789c2869fb7bda2ea9c24159bad /runtime/tools | |
parent | fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2 (diff) | |
download | vim-git-f57969a20a4398f56e3028a6cc1102f9f9286ccf.tar.gz |
patch 7.4.1244v7.4.1244
Problem: The channel functions don't sort together.
Solution: Use a common "ch_" prefix.
Diffstat (limited to 'runtime/tools')
-rw-r--r-- | runtime/tools/demoserver.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/runtime/tools/demoserver.py b/runtime/tools/demoserver.py index 0f6a3740c..9f22aa293 100644 --- a/runtime/tools/demoserver.py +++ b/runtime/tools/demoserver.py @@ -1,15 +1,21 @@ #!/usr/bin/python +# # Server that will accept connections from a Vim channel. # Run this server and then in Vim you can open the channel: -# :let handle = connect('localhost:8765', 'json') +# :let handle = ch_open('localhost:8765', 'json') # # Then Vim can send requests to the server: -# :let response = sendexpr(handle, 'hello!') +# :let response = ch_sendexpr(handle, 'hello!') # # And you can control Vim by typing a JSON message here, e.g.: # ["ex","echo 'hi there'"] # +# There is no prompt, just type a line and press Enter. +# To exit cleanly type "quit<Enter>". +# # See ":help channel-demo" in Vim. +# +# This requires Python 2.6 or later. from __future__ import print_function import json |