Felipe Izolan

Results 5 comments of 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 ? ![image](https://github.com/neovim/neovim/assets/80170121/17dafe85-3ad8-476f-ad5e-ada38c5ff358)

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()...