nvim-ts-autotag icon indicating copy to clipboard operation
nvim-ts-autotag copied to clipboard

Use treesitter to auto close and auto rename html tag

Results 41 nvim-ts-autotag issues
Sort by recently updated
recently updated
newest added

With the increase in popularity of Astro, I have been trying to use it but support was not there. Added with this simple PR. For reference: [Astro.build site](https://astro.build/)

Could you add to supported languages `eruby`? Thanks in advance

For example, ```html step one: | step two: press > get this: | ``` I think this feature would be for convinience to `` :+1:

resolves #152 out of the main configuration ```lua start_tag_pattern = { "tag_start" }, start_name_tag_pattern = { "element_identifier" }, end_tag_pattern = { "tag_end" }, end_name_tag_pattern = { "element_identifier" }, close_tag_pattern =...

Added a few filetypes for common html template fileformats like jinja, heex and gotempl.

wontfix

I'm on NVIM v0.9.1. and have installed the nvim-ts-autotag with packer: ``` use 'windwp/nvim-ts-autotag' ``` And set it up as per the instructions: ``` require('nvim-ts-autotag').setup() ``` It seems to be...

Hey, i am using Elixir Phoenix for an Project but this Plugins seems to not really work with heex files.

Templ is a templating language for use within golang. Example file `hello.templ` ```go package main templ hello(name string) { Hello, { name } } templ foo(name string) { @hello(name) }...