blob: 225944222959960cdc807ca1cf53600fc41ab49c [file] [log] [blame]
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01001" Vim filetype plugin
2" Language: Corn
3" Original Author: Jake Stanger (mail@jstanger.dev)
4" License: MIT
5" Last Change: 2023 May 28
6
7if exists('b:did_ftplugin')
8 finish
9endif
10let b:did_ftplugin = 1
11
12setlocal formatoptions-=t
13
14" Set comment (formatting) related options.
15setlocal commentstring=//\ %s comments=://
16
17" Let Vim know how to disable the plug-in.
18let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions<'