mss.vim 467 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: Vivado mss file
  3. " Last Change: 2024 Oct 22
  4. " Document: https://docs.amd.com/r/2020.2-English/ug1400-vitis-embedded/Microprocessor-Software-Specification-MSS
  5. " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. setlocal comments=b:#,fb:-
  11. setlocal commentstring=#\ %s
  12. let b:match_words = '\<BEGIN\>:\<END\>'
  13. let b:undo_ftplugin = "setl com< cms< | unlet b:match_words"