Go to file
2024-05-20 08:17:52 +07:00
.github ci: use neovim nightly 2024-05-20 08:17:52 +07:00
lua fix: reparse source if the node has changes 2024-05-20 08:17:52 +07:00
plugin refactor: migrate plugin/ file to lua from vimscript 2024-05-20 08:17:52 +07:00
sample fix bug and update 2023-12-10 15:01:33 +07:00
tests refactor: move .luarc.json to toplevel 2024-05-20 08:17:52 +07:00
.editorconfig update ci 2023-03-17 09:19:39 +07:00
.gitignore test: overhaul test setup and make commands 2024-05-20 08:17:52 +07:00
.luarc.json refactor: move .luarc.json to toplevel 2024-05-20 08:17:52 +07:00
LICENSE Initial commit 2021-03-08 07:59:24 +07:00
Makefile test: overhaul test setup and make commands 2024-05-20 08:17:52 +07:00
README.md Add twig filetype 2024-05-20 08:17:52 +07:00

nvim-ts-autotag

Use treesitter to autoclose and autorename html tag

It works with:

  • astro
  • glimmer
  • handlebars
  • html
  • javascript
  • jsx
  • markdown
  • php
  • rescript
  • svelte
  • tsx
  • twig
  • typescript
  • vue
  • xml

Usage

Before        Input         After
------------------------------------
<div           >              <div></div>
<div></div>    ciwspan<esc>   <span></span>
------------------------------------

Setup

Neovim 0.7 and nvim-treesitter to work

User treesitter setup

require'nvim-treesitter.configs'.setup {
  autotag = {
    enable = true,
  }
}

or you can use a set up function

require('nvim-ts-autotag').setup()

Enable update on insert

If you have that issue #19

vim.lsp.handlers['textDocument/publishDiagnostics'] = vim.lsp.with(
    vim.lsp.diagnostic.on_publish_diagnostics,
    {
        underline = true,
        virtual_text = {
            spacing = 5,
            severity_limit = 'Warning',
        },
        update_in_insert = true,
    }
)

Default values

local filetypes = {
    'html', 'javascript', 'typescript', 'javascriptreact', 'typescriptreact', 'svelte', 'vue', 'tsx', 'jsx', 'rescript',
    'xml',
    'php',
    'markdown',
    'astro', 'glimmer', 'handlebars', 'hbs', 'twig'
}
local skip_tag = {
  'area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'slot',
  'input', 'keygen', 'link', 'meta', 'param', 'source', 'track', 'wbr','menuitem'
}

Override default values

require'nvim-treesitter.configs'.setup {
  autotag = {
    enable = true,
    enable_rename = true,
    enable_close = true,
    enable_close_on_slash = true,
    filetypes = { "html" , "xml" },
  }
}
-- OR
require('nvim-ts-autotag').setup({
  filetypes = { "html" , "xml" },
})

Fork Status

This is forked from https://github.com/windwp/nvim-ts-autotag due to the primary maintainer's disappearance. Any PRs/work given to this fork may end up back in the original repository if the primary maintainer comes back.

Full credit to @windwp for the creation of this plugin. Here's to hoping they're ok and will be back sometime down the line.