Skip to content

Commit 22e5919

Browse files
committed
tools, docs: continue "pynvim" rename
ref #305
1 parent 2165d6b commit 22e5919

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
### Pynvim: Python client to [Neovim](https://github.com/neovim/neovim)
22

3-
[![Build Status](https://travis-ci.org/neovim/python-client.svg?branch=master)](https://travis-ci.org/neovim/python-client)
3+
[![Build Status](https://travis-ci.org/neovim/pynvim.svg?branch=master)](https://travis-ci.org/neovim/pynvim)
44
[![Documentation Status](https://readthedocs.org/projects/pynvim/badge/?version=latest)](http://pynvim.readthedocs.io/en/latest/?badge=latest)
5-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/neovim/python-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/neovim/python-client/?branch=master)
6-
[![Code Coverage](https://scrutinizer-ci.com/g/neovim/python-client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/neovim/python-client/?branch=master)
5+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/neovim/pynvim/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/neovim/pynvim/?branch=master)
6+
[![Code Coverage](https://scrutinizer-ci.com/g/neovim/pynvim/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/neovim/pynvim/?branch=master)
77

88
Pynvim implements support for python plugins in Nvim. It also works as a library for
99
connecting to and scripting Nvim processes through its msgpack-rpc API.

docs/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you change the code, you need to run::
99
for the changes to have effect.
1010
Alternatively you could execute Neovim with the ``$PYTHONPATH`` environment variable::
1111

12-
PYTHONPATH=/path/to/python-client nvim
12+
PYTHONPATH=/path/to/pynvim nvim
1313

1414
But note this is not completely reliable,
1515
as installed packages can appear before ``$PYTHONPATH`` in the python search path.

docs/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ You can install the package without being root by adding the ``--user`` flag::
1616
If you only use one of python2 or python3,
1717
it is enough to install that version.
1818

19-
If you follow Neovim HEAD,
20-
make sure to upgrade the ``python-client`` when you upgrade Neovim::
19+
If you follow Neovim HEAD, make sure to upgrade ``pynvim`` when you upgrade
20+
Neovim::
2121

2222
pip2 install --upgrade pynvim
2323
pip3 install --upgrade pynvim
2424

2525
Install from source
2626
-------------------
2727

28-
Clone the repository somewhere on your disk and enter to the repository::
28+
Clone the repository somewhere on your disk and enter to the repository::
2929

30-
git clone https://github.com/neovim/python-client.git
31-
cd python-client
30+
git clone https://github.com/neovim/pynvim.git
31+
cd pynvim
3232

3333
Now you can install it on your system::
3434

pynvim/plugin/host.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def _load(self, plugins):
152152
kind = "rplugin"
153153
name = "python{}-{}-host".format(sys.version_info[0], kind)
154154
attributes = {"license": "Apache v2",
155-
"website": "github.com/neovim/python-client"}
155+
"website": "github.com/neovim/pynvim"}
156156
self.nvim.api.set_client_info(
157157
name, VERSION.__dict__, "host", host_method_spec,
158158
attributes, async_=True)

pynvim/plugin/script_host.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self, nvim):
5050
'au DirChanged * call rpcnotify({}, "python_chdir", v:event.cwd)'
5151
.format(nvim.channel_id), async_=True)
5252
# XXX: Avoid race condition.
53-
# https://github.com/neovim/python-client/pull/296#issuecomment-358970531
53+
# https://github.com/neovim/pynvim/pull/296#issuecomment-358970531
5454
# TODO(bfredl): when host initialization has been refactored,
5555
# to make __init__ safe again, the following should work:
5656
# os.chdir(nvim.eval('getcwd()', async_=False))

0 commit comments

Comments
 (0)