atitcreate

Results 5 comments of atitcreate

If you know the action name(see the response below), you can call it directly, e.g.: ```vim call CocActionAsync('codeAction', 'cursor', "Extract to type alias") ``` ___ Following the guide [Debug language...

> can you write more detailed, in what file you doing this? I was checking the return type of a function and it unexpectedly returned void, thus the error. >...

Related examples: ```vim vim9script def GetVoidValue(): void enddef echom typename(GetVoidValue()) # Output(no error): # void ``` ```vim def s:GetVoidValue(): void enddef echom typename(s:GetVoidValue()) " Output(no error): " void ``` The...

Seems it was overwritten by 93642b1 https://github.com/neoclide/coc-eslint/blob/93642b1706fb2fbefe57caf4e394fe87019a67c6/src/client.ts#L402

Reproduced when `set cmdheight=2` Can work around by `set cmdheight=3`