Skip to content

Commit f2e55b5

Browse files
committed
FIXUP README.md
1 parent 3f86eb0 commit f2e55b5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
[![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)
55
[![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)
66

7-
Library for scripting Nvim processes through its msgpack-rpc API.
7+
Implements support for python plugins in Nvim.
8+
Also works as a library for connecting to and scripting Nvim processes through its msgpack-rpc API.
89

910
#### Installation
1011

@@ -48,8 +49,8 @@ class TestPlugin(object):
4849

4950
@neovim.command("TestCommand", range='', nargs='*')
5051
def testcommand(self, args, range):
51-
self.nvim.current.line = ('Command with args: {}, range: {}'
52-
.format(args, range))
52+
self.nvim.current.line = ('Command with args: {}, range: {}'
53+
.format(args, range))
5354

5455
@neovim.autocmd('BufEnter', pattern='*.py', eval='expand("<afile>")', sync=True)
5556
def on_bufenter(self, filename):

0 commit comments

Comments
 (0)