mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
17 lines
435 B
VimL
17 lines
435 B
VimL
|
" Vim filetype plugin file
|
||
|
" Language: dts/dtsi (device tree files)
|
||
|
" Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
|
||
|
" Latest Revision: 2024 Apr 12
|
||
|
|
||
|
if exists('b:did_ftplugin')
|
||
|
finish
|
||
|
endif
|
||
|
let b:did_ftplugin = 1
|
||
|
|
||
|
let b:undo_ftplugin = 'setl inc< cms< com<'
|
||
|
|
||
|
setlocal include=^\\%(#include\\\|/include/\\)
|
||
|
" same as C
|
||
|
setlocal commentstring&
|
||
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|