You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
472 B
VimL
17 lines
472 B
VimL
9 years ago
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||
|
" Vim ftplugin file
|
||
|
"
|
||
|
" Language: JSX (JavaScript)
|
||
|
" Maintainer: Max Wang <mxawng@gmail.com>
|
||
|
"
|
||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||
|
|
||
|
" modified from html.vim
|
||
|
if exists("loaded_matchit")
|
||
|
let b:match_ignorecase = 0
|
||
|
let b:match_words = '(:),\[:\],{:},<:>,' .
|
||
8 years ago
|
\ '<\@<=\([^/][^ \t>]*\)[^>]*\%(/\@<!>\|$\):<\@<=/\1>'
|
||
9 years ago
|
endif
|
||
|
|
||
|
setlocal suffixesadd+=.jsx
|