blade-nav.nvim

Navigating Blade views within Laravel projects

MIT License

Stars
42
Committers
3

Bot releases are hidden (Show)

blade-nav.nvim - v1.8.0

Published by RicardoRamirezR about 1 month ago

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
    },
}
blade-nav.nvim - v1.7.1 Latest Release

Published by RicardoRamirezR 3 months ago

  • Made gf mapping less intrusive, now is made only in blade and php file types
blade-nav.nvim - v.1.6.6

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v.1.6.5

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.6.4

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.6.3

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.6.2

Published by RicardoRamirezR 3 months ago

Added a BladeElapsedTimes command to measure execution times

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v.1.6.1...v1.6.2

blade-nav.nvim - v.1.6.1

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.6.0

Published by RicardoRamirezR 3 months ago

What's Changed

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.5.4...v1.6.0

blade-nav.nvim - v1.5.4

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.5.3

Published by RicardoRamirezR 3 months ago

  • Fix #16
  • remove --column for artisan in gf for routes
blade-nav.nvim - v1.5.2

Published by RicardoRamirezR 3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.5.1...v1.5.2

blade-nav.nvim - v1.5.1

Published by RicardoRamirezR 3 months ago

blade-nav.nvim - v1.5.0

Published by RicardoRamirezR 3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.4.0...v1.5.0

blade-nav.nvim - v1.4.0

Published by RicardoRamirezR 4 months ago

Added support of navigate using gf command to controllers associated with a route name
Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.3.0...v1.4.0

blade-nav.nvim - v1.3.0

Published by RicardoRamirezR 4 months ago

Added COQ completion

blade-nav.nvim - v1.2.1

Published by RicardoRamirezR 4 months ago

Added optional (' to Route::view, View::make or view
You can write:
Route::view or Route::view('
View::make or View::make('
view or view('

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.2.0...v1.2.1

blade-nav.nvim - v1.2.0

Published by RicardoRamirezR 4 months ago

Added completion to Controller/Route:

  • Route::view('url', 'name')
  • View::make('name')
  • view('name')

Full Changelog: https://github.com/RicardoRamirezR/blade-nav.nvim/compare/v1.1.2...v1.2.0

blade-nav.nvim - v1.1.2

Published by RicardoRamirezR 4 months ago

Related Projects