neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

mss.vim (467B)


      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"