autohotkey.vim 354 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: AutoHotkey
  3. " Maintainer: Peter Aronoff <peteraronoff@fastmail.com>
  4. " Last Changed: 2024 Jul 25
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal comments=:;
  10. setlocal commentstring=;\ %s
  11. let b:undo_ftplugin = "setlocal comments< commentstring<"
  12. " vim: nowrap sw=2 sts=2 ts=8 noet: