dts.vim 535 B

123456789101112131415161718
  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. " 2024 Jun 02 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  6. if exists('b:did_ftplugin')
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. let b:undo_ftplugin = 'setl inc< cms< com<'
  11. setlocal include=^\\%(#include\\\|/include/\\)
  12. " same as C
  13. setlocal commentstring=/*\ %s\ */
  14. setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://