wzy | 0549c50 | 2024-04-13 00:36:57 +0800 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: dts/dtsi (device tree files) | ||||
3 | " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> | ||||
4 | " Latest Revision: 2024 Apr 12 | ||||
5 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | let b:undo_ftplugin = 'setl inc< cms< com<' | ||||
12 | |||||
13 | setlocal include=^\\%(#include\\\|/include/\\) | ||||
14 | " same as C | ||||
15 | setlocal commentstring& | ||||
16 | setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,:// |