Compare commits

...

3 Commits

Author SHA1 Message Date
eda9c78923
Merge pull request #1 from ydalton/fork
Add Blade filetype
2024-05-13 09:59:25 -05:00
715d5b8efa
ci: use neovim nightly 2024-05-13 09:57:32 -05:00
Yussef Dalton
c54af24ea9 Add Blade filetype
The only thing that's missing is it doesn't indent properly when you
close a tag, but otherwise it closes properly.
2024-05-13 12:55:00 +02:00
2 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,7 @@ jobs:
matrix:
include:
- os: ubuntu-20.04
url: https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-linux64.tar.gz
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
manager: sudo apt-get
packages: -y fd-find
steps:

View File

@ -16,6 +16,7 @@ M.tbl_filetypes = {
'htmldjango',
'eruby',
'templ',
'blade',
}
-- stylua: ignore
@ -34,6 +35,7 @@ local HTML_TAG = {
'php',
'twig',
'xml',
'blade',
},
start_tag_pattern = { 'start_tag', 'STag' },
start_name_tag_pattern = { 'tag_name', 'Name' },