Meow Honk

Results 74 comments of Meow Honk

Using `tests/minimal_init.lua` on `test.html`: ![image](https://github.com/windwp/nvim-ts-autotag/assets/21010072/ea46aa82-2e0e-484a-a904-8f36219ed566) Renaming from outer to inner: ![image](https://github.com/windwp/nvim-ts-autotag/assets/21010072/7eac92db-6852-43ae-a749-bec6e4393ce2) Renaming from inner to outer: ![image](https://github.com/windwp/nvim-ts-autotag/assets/21010072/8995ac73-8aae-4a86-998d-66e44f42ba48)

Seems like https://github.com/windwp/nvim-ts-autotag/issues/190 is related?

> Should I just comment the snippets here or fork it and pr with the partial implementation in a new file? What's your preferred way to receive the code? It's...

I haven't tested anything, but I think SFC frameworks like vue/svelte all use treesitter HTML grammar so this should work for everyone. Btw I think you can just use `vim.print(...)`...

@MNThomson @ThePrimeagen Can we get a release created so Mason will pick up this fix?

> Unfortunately only @ThePrimeagen has the ability to release a new version... Nice so never?

Interesting. I will take a look at this.

It looks like when you do `:set nobuflisted | set buflisted` it triggers the `BufDelete` event. I have tried checking if the buffer was actually deleted using `nvim_buf_is_valid` and `nvim_buf_is_loaded`,...

Can you try with `fix/53-no_detach_when_nobuflisted` branch? Since `:set nobuflisted` triggers the `BufDelete` event, I added checks to see if the buffer was valid and loaded. From my little testing, I...

Yeah I see the color names returned from `vim.api.nvim_get_color_map()` are the xterm color names. It would be easy to support `colorNNN` or `colourNNN` via a lookup table like how the...