wat.vim 557 B

12345678910111213141516171819
  1. " Vim filetype plugin file
  2. " Language: WebAssembly
  3. " Maintainer: rhysd <lin90162@yahoo.co.jp>
  4. " Last Change: Nov 14, 2023
  5. " May 24, 2024 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  6. " For bugs, patches and license go to https://github.com/rhysd/vim-wasm
  7. if exists("b:did_ftplugin")
  8. finish
  9. endif
  10. let b:did_ftplugin = 1
  11. setlocal comments=s:(;,e:;),:;;
  12. setlocal commentstring=(;\ %s\ ;)
  13. setlocal formatoptions-=t
  14. setlocal iskeyword+=$,.,/
  15. let b:undo_ftplugin = "setlocal comments< commentstring< formatoptions< iskeyword<"