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

Install plugins in neovim + lua. ``` use "nvim-treesitter/nvim-treesitter" use "windwp/nvim-ts-autotag" ``` Create a file tree-sitter.lua and include in init.lua ```lua require 'nvim-treesitter.configs'.setup { -- A list of parser names,...

In react we use fragments, which is basically just an empty tag like this: ```jsx function HolaWindwp() { return ( // Children ) } ``` If i try to chage...

Hi, This plugin is working pretty well for me, but I wonder if I can enable auto indent not only for standard HTML tags (like ``, ``, ``, etc.), but...

.csproj files are the c# project filetype. I have the filetype set to xml, and the default configuration for autotag, but nothing is happening. It does work fine in other...

Hi, it doesn't seem to work with Lit. html is inside a tagged string literal. Typescript. I have installed treesitter parser for TS. Regards

wontfix

This plugin works great for me for HTML, but doesn't for svelte. I do have TS installed, I do have the svelte module for TS, and I do have autotag...

Hello, Typing `` will result `` It works fine, but when renaming the field it doesn not work. When typing `ciwspan` within the `` does not result `` but results...

for example ```html

This change adds support for the `heex` file type that is used for [Phoenix Framework](https://www.phoenixframework.org/) templates. `heex` is like normal HTML but supports function and module components as well that...

Autorename is not working for me. For example: when I'm inside a `` tag and type ciwspan`` it just rename the first `` tag to span, and the other tag...