diff options
| author | Pham Huy Hoang <hoangtun0810@gmail.com> | 2023-03-06 09:56:25 +0700 |
|---|---|---|
| committer | Amaan Qureshi <amaanq12@gmail.com> | 2023-03-06 02:32:45 -0500 |
| commit | 5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8 (patch) | |
| tree | ecf7458905edf14e54183e94b6f7da6f04b7114b | |
| parent | feat: add `@comment.documentation` where applicable (diff) | |
| download | nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar.gz nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar.bz2 nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar.lz nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar.xz nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.tar.zst nvim-treesitter-5ac39d10cc8a28f7bdb3725f3ee84a132ba783a8.zip | |
indents(vue): fix indents on new line after <template>
| -rw-r--r-- | queries/vue/indents.scm | 2 | ||||
| -rw-r--r-- | tests/indent/vue/template_indent.vue | 3 | ||||
| -rw-r--r-- | tests/indent/vue_spec.lua | 24 |
3 files changed, 29 insertions, 0 deletions
diff --git a/queries/vue/indents.scm b/queries/vue/indents.scm index d8b011e0e..d6869803b 100644 --- a/queries/vue/indents.scm +++ b/queries/vue/indents.scm @@ -3,3 +3,5 @@ [ (template_element) ] @indent + +(template_element (end_tag "</" @branch ">" @indent_end)) diff --git a/tests/indent/vue/template_indent.vue b/tests/indent/vue/template_indent.vue new file mode 100644 index 000000000..95d891f84 --- /dev/null +++ b/tests/indent/vue/template_indent.vue @@ -0,0 +1,3 @@ +<template> + Foo +</template> diff --git a/tests/indent/vue_spec.lua b/tests/indent/vue_spec.lua new file mode 100644 index 000000000..09527e4b0 --- /dev/null +++ b/tests/indent/vue_spec.lua @@ -0,0 +1,24 @@ +local Runner = require("tests.indent.common").Runner +-- local XFAIL = require("tests.indent.common").XFAIL + +local run = Runner:new(it, "tests/indent", { + tabstop = 2, + shiftwidth = 2, + softtabstop = 0, + expandtab = true, +}) + +describe("indent Vue:", function() + describe("whole file:", function() + run:whole_file({ "vue/" }, {}) + end) + + describe("new line:", function() + for _, info in ipairs { + { 1, 2 }, + { 3, 0 }, + } do + run:new_line("vue/template_indent.vue", { on_line = info[1], text = "Foo", indent = info[2] }, info[3], info[4]) + end + end) +end) |
