Releases: RicardoRamirezR/blade-nav.nvim
Releases · RicardoRamirezR/blade-nav.nvim
v1.8.1
What's Changed
- Fix typo in Lazy install instructions by @Douglasdc3 in #28
- Fix rename componet by component vars that give nil error by @adrian13val in #29
- Fix not_close_tag option by @cbaconnier in #30
- Fix potential issue with cmp by @cbaconnier in #31
- feat(config): add include_routes option to control completion scope by @rizkyilhampra in #33
New Contributors
- @Douglasdc3 made their first contribution in #28
- @adrian13val made their first contribution in #29
- @cbaconnier made their first contribution in #30
- @rizkyilhampra made their first contribution in #33
Full Changelog: v1.8.0...v1.8.1
v1.8.0
Custom Laravel components directories
Search in custom paths when using gf
on a Laravel component enabling the exrc
option and adding to one of the supported files something like:
vim.g.blade_nav = {
laravel_componets = {
"resources/views/common",
}
}
Setting vim.o.exrc = true
, see :h VIMINIT
Custom close tags on complete
To prevent a closing ')
you can set close_tag_on_complete
option to false
, it happens when you have an auto close plugin.
For example, in lazy.nvim:
{
'ricardoramirezr/blade-nav.nvim',
ft = {'blade', 'php'} -- optional, improves startup time
opts = {
close_tag_on_complete = false, -- default: true
},
}
v1.7.1
- Made gf mapping less intrusive, now is made only in blade and php file types
v1.7.0
Full Changelog: v.1.6.6...v1.7.0
Full Changelog: v.1.6.6...v1.7.0
v.1.6.6
Full Changelog: v1.6.3...v.1.6.6
v.1.6.5
Full Changelog: v1.6.3...v.1.6.5
v1.6.4
Full Changelog: v1.6.3...v1.6.4
v1.6.3
Full Changelog: v1.6.2...v1.6.3
v1.6.2
Added a BladeElapsedTimes
command to measure execution times
Full Changelog: v.1.6.1...v1.6.2
v1.6.0
What's Changed
- feat: add support for to_route by @ALameLlama in #20
- added health check
Full Changelog: v1.5.4...v1.6.0