lnk.vim 492 B

123456789101112131415
  1. " Vim filetype plugin file
  2. " Language: TI linker command file
  3. " Document: https://software-dl.ti.com/ccs/esd/documents/sdto_cgt_Linker-Command-File-Primer.html
  4. " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
  5. " Last Change: 2024 Dec 31
  6. if exists("b:did_ftplugin") | finish | endif
  7. let b:did_ftplugin = 1
  8. setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
  9. setlocal commentstring=/*\ %s\ */
  10. setlocal iskeyword+=.
  11. let b:undo_ftplugin = "setl commentstring< comments< iskeyword<"