Wu, Zhenyu | a87462a | 2024-11-18 21:36:31 +0100 | [diff] [blame] | 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 | |
| 7 | if exists("b:did_ftplugin") |
| 8 | finish |
| 9 | endif |
| 10 | let b:did_ftplugin = 1 |
| 11 | |
| 12 | setlocal comments=b:#,fb:- |
| 13 | setlocal commentstring=#\ %s |
| 14 | |
| 15 | let b:match_words = '\<BEGIN\>:\<END\>' |
| 16 | let b:undo_ftplugin = "setl com< cms< | unlet b:match_words" |