pynvim
pynvim copied to clipboard
function attribute breaks if name is too long
This is more of a question than an actual "error", but something I've noticed is that the function decorator, the name property can only be a certain length.
For example
@neovim.function('NvimTSEnter')
def onEnter(self,args):
works, but
@neovim.function('NvimTypescriptOnEnter')
def onEnter(self,args):
would not.
It's easy to work around, but does become annoying every now and then. Is this something that is known?
python client version:0.1.13
That's weird. Seems like a bug.
I'll be working on this issue #249