1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 05:20:04 +08:00
SpaceVim/bundle/plantuml-syntax/ftdetect/plantuml.vim

8 lines
343 B
VimL

" Vim filetype detection file
" Language: PlantUML
" License: VIM LICENSE
" Note: should not use augroup in ftdetect (see :help ftdetect)
autocmd BufRead,BufNewFile * if !did_filetype() && getline(1) =~# '@startuml\>'| setfiletype plantuml | endif
autocmd BufRead,BufNewFile *.pu,*.uml,*.plantuml,*.puml,*.iuml set filetype=plantuml