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.
11 lines
411 B
VimL
11 lines
411 B
VimL
10 years ago
|
" Language: JSX
|
||
|
" Maintainer: Fuji, Goro (gfx) <fuji.goro@dena.jp>
|
||
|
" URL: http://github.com/jsx/jsx.vim
|
||
|
" License: MIT License
|
||
|
|
||
|
autocmd! BufRead,BufNewFile *.{jsx,jx} setlocal filetype=jsx
|
||
|
|
||
|
autocmd! BufNewFile *.jsx 0r <sfile>:h/../template/jsx-app.jsx
|
||
|
autocmd! BufNewFile lib/*.jsx 0r <sfile>:h/../template/jsx-module.jsx
|
||
|
autocmd! BufNewFile t/*.jsx 0r <sfile>:h/../template/jsx-test.jsx
|