numToStr

Results 124 comments of numToStr

> will you try to not use new nightly only APIs going forward? I also, almost, follow this principle unless something is really required like `vim.fs`. And the plugin is...

It seems there will be alignment issue because of `conceallevel`, maybe I should add this behavior behind a flag(?) ![image](https://user-images.githubusercontent.com/24727447/202715574-cb92a63e-8c4b-4fe2-982a-b305227ced4c.png)

If you are waiting for zellij to implement something, then better mark this PR as draft.

IIRC `?` is not supported in return right now. I am also not sure if lua_ls supports it or not, or maybe they forget to spec it in their wiki....

I can add support for that.

> The Foo class was exported and its method bar was recognized by lemmy-help If you look closely `bar()` is not recognized. It's a limitation. The parser, currently, can only...

Well, sumneko's lua parser is designed to work with its LSP server. So, it's natural that it knows more about code than lemmy-help straight & simple top-down parser. And fun...

What's the point of it? In your example you are exporting `M` so only methods and properties attached to `M` will be documented. Beside that, any `---@class`, `---@type`, `---@alias` will...

> Still - users can get their hand on an instance of Foo and invoke it's :bar() method, How? You are only exporting `M` and `Foo` is defined locally. I...