File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 4
4
[ ![ 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 )
5
5
[ ![ 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 )
6
6
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.
8
9
9
10
#### Installation
10
11
@@ -48,8 +49,8 @@ class TestPlugin(object):
48
49
49
50
@neovim.command (" TestCommand" , range = ' ' , nargs = ' *' )
50
51
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 ))
53
54
54
55
@neovim.autocmd (' BufEnter' , pattern = ' *.py' , eval = ' expand("<afile>")' , sync = True )
55
56
def on_bufenter (self , filename ):
You can’t perform that action at this time.
0 commit comments