Felipe Izolan
Felipe Izolan
You can reach the same behavior on neovim 0.9: - Start neovim without opening a file/folder - :set property=value - The screen is cleaned. I don't know if it's a...
- `"OptionSet"` - is triggered two times at startup (I don't know if it's a bug, probably yes! on neovim 0.9.4 it not occurs). - `nvim_set_hl` - is called. -...
> can't reproduce please try build with latest commit .your build version is old. ```lua local c = 0 vim.api.nvim_create_autocmd("OptionSet", { pattern = "*", callback = function() c = c...
> your neovim version ? 
Ok! I solved my problem with: ```javascript class Scene { preload() { this.load.image("minimap", "/minimap.png"); } create() { this.minimap = this.add.image(0, 0, "minimap"); this.minimap.frame.cutWidth = 64; this.minimap.frame.cutHeight = 64; } update()...