ld.vim (565B)
1 " Vim filetype plugin file 2 " Language: ld(1) script 3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> 4 " Latest Revision: 2008 Jul 09 5 " 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring') 6 7 if exists("b:did_ftplugin") 8 finish 9 endif 10 let b:did_ftplugin = 1 11 12 let s:cpo_save = &cpo 13 set cpo&vim 14 15 let b:undo_ftplugin = "setl com< cms< inc< fo<" 16 17 setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*\ %s\ */ include=^\\s*INCLUDE 18 setlocal formatoptions-=t formatoptions+=croql 19 20 let &cpo = s:cpo_save 21 unlet s:cpo_save