corn.vim 457 B

12345678910111213141516171819
  1. " Vim filetype plugin
  2. " Language: Corn
  3. " Original Author: Jake Stanger (mail@jstanger.dev)
  4. " License: MIT
  5. " Last Change: 2023 May 28
  6. if exists('b:did_ftplugin')
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. setlocal formatoptions-=t
  11. " Set comment (formatting) related options.
  12. setlocal commentstring=//\ %s comments=://
  13. " Let Vim know how to disable the plug-in.
  14. let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions<'