2016-01-22 03:08:00 -05:00
|
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'blade') == -1
|
|
|
|
|
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: Blade (Laravel)
|
|
|
|
" Maintainer: Jason Walton <jwalton512@gmail.com>
|
|
|
|
|
|
|
|
if exists('b:did_ftplugin')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
runtime! ftplugin/html.vim
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2016-07-05 03:53:49 -04:00
|
|
|
setlocal suffixesadd=.blade.php,.php
|
|
|
|
setlocal includeexpr=substitute(v:fname,'\\.','/','g')
|
|
|
|
setlocal path+=resources/views;
|
2016-07-19 04:09:54 -04:00
|
|
|
setlocal include=\\w\\@<!@\\%(include\\\|extends\\)
|
|
|
|
setlocal define=\\w\\@<!@\\%(yield\\\|stack\\)
|
|
|
|
|
|
|
|
setlocal commentstring={{--%s--}}
|
|
|
|
setlocal comments+=s:{{--,m:\ \ \ \ ,e:--}}
|
|
|
|
|
|
|
|
if exists('loaded_matchit') && exists('b:match_words')
|
|
|
|
" Append to html matchit words
|
|
|
|
let b:match_words .= ',' .
|
2017-03-23 06:28:19 -04:00
|
|
|
\ '@\%(section\s*([^\,]*)\|if\|unless\|foreach\|forelse\|for\|while\|push\|can\|cannot\|hasSection\|' .
|
|
|
|
\ 'php\s*(\@!\|verbatim\|component\|slot\|prepend\)' .
|
2016-07-19 04:09:54 -04:00
|
|
|
\ ':' .
|
|
|
|
\ '@\%(else\|elseif\|empty\|break\|continue\|elsecan\|elsecannot\)\>' .
|
|
|
|
\ ':' .
|
|
|
|
\ '@\%(end\w\+\|stop\|show\|append\|overwrite\)' .
|
|
|
|
\ ',{:},\[:\],(:)'
|
|
|
|
let b:match_skip = 'synIDattr(synID(line("."), col("."), 0), "name") !=# "bladeKeyword"'
|
|
|
|
let b:match_ignorecase = 0
|
|
|
|
endif
|
2016-01-22 03:08:00 -05:00
|
|
|
|
|
|
|
endif
|