Open
Description
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