Pablo Ariel Mayobre
Pablo Ariel Mayobre
Is there some handy documentation on how to implement the server? What commands should be sent and how each part relates to each other. I have been reading the source...
Currently elmjutsu is the package, in my setup, that takes the longest time to activate, at 14 seconds! which is a lot considering this happens each time you open a...
Since 1.12 (and even more likely in 1.13) [markBufferRange](https://atom.io/docs/api/v1.12.7/TextEditor#instance-markBufferRange) as stated in atom/text-buffer#154 doesn't pass the persistent option down. Instead you need to use a [addMarkerLayer](https://atom.io/docs/api/v1.12.7/TextEditor#instance-addMarkerLayer) and then use [markRange](https://atom.io/docs/api/v1.12.7/MarkerLayer#instance-markRange)...
This commit is related to the pull request #38 which added `onLocalDeclaration`, both target the specific use case of [dapetcu21/atom-autocomplete-lua](https://github.com/dapetcu21/atom-autocomplete-lua). This pull request adds information about the function where the...
This is a feature request, which would be fairly easy to add to this package. Changing [line 50 in the generator](https://github.com/rm-code/love-atom/blob/master/generator/json-generator.lua#L50) to ```lua arguments[#arguments].displayName = string.format( '[%s=%s]', v.name, v.default )...
Spec
I think that this package could have a good spec. Even though it's pretty simple, testing could be leveraged to a CI to make sure that nothing breaks from a...
Hi, I was thinking that maybe having a revoke method on the Discord provider, to revoke an AccessToken. Note that the AbstractProvider has no such method, but it could prove...
Add examples on how to use the different parts of Concord. Some of these already exist in the README but could see some improvement with in depth explanations, for example,...
A common requested feature is a way to store Entities (or references to Entities) inside Components while keeping the data serializable. That is, the next startup the Component data can...
This function would allow you to define a callback that would be called before an event is emitted. This is really useful for debugging event delegation. This callback would get...