blob: d95e1ee6005384b6fa364f80f0e4a95a353664cc [file] [log] [blame]
Riley Bruins7d60dc22024-07-07 21:16:08 +02001" Vim filetype plugin
2" Language: Yacc
3" Maintainer: Riley Bruins <ribru17@gmail.com>
4" Last Change: 2024 Jul 06
5
6if exists('b:did_ftplugin')
7 finish
8endif
9let b:did_ftplugin = 1
10
11" Set 'comments' to format dashed lists in comments.
12" Also include ///, used for Doxygen.
13setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
14setlocal commentstring=//\ %s
15
16let b:undo_ftplugin = 'setl com< cms<'