2018-10-29 01:55:33 -07:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: WebAssembly
|
|
|
|
" Maintainer: rhysd <lin90162@yahoo.co.jp>
|
2023-11-14 09:38:46 -07:00
|
|
|
" Last Change: Nov 14, 2023
|
2024-06-04 00:39:28 -07:00
|
|
|
" May 24, 2024 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
2018-10-29 01:55:33 -07:00
|
|
|
" For bugs, patches and license go to https://github.com/rhysd/vim-wasm
|
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
setlocal comments=s:(;,e:;),:;;
|
2024-06-04 00:39:28 -07:00
|
|
|
setlocal commentstring=(;\ %s\ ;)
|
2018-10-29 01:55:33 -07:00
|
|
|
setlocal formatoptions-=t
|
|
|
|
setlocal iskeyword+=$,.,/
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setlocal comments< commentstring< formatoptions< iskeyword<"
|