neovim

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

lnk.vim (492B)


      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 
      7 if exists("b:did_ftplugin") | finish | endif
      8 let b:did_ftplugin = 1
      9 
     10 setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
     11 setlocal commentstring=/*\ %s\ */
     12 setlocal iskeyword+=.
     13 
     14 let b:undo_ftplugin = "setl commentstring< comments< iskeyword<"