neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

wat.vim (557B)


      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 
      8 if exists("b:did_ftplugin")
      9    finish
     10 endif
     11 let b:did_ftplugin = 1
     12 
     13 setlocal comments=s:(;,e:;),:;;
     14 setlocal commentstring=(;\ %s\ ;)
     15 setlocal formatoptions-=t
     16 setlocal iskeyword+=$,.,/
     17 
     18 let b:undo_ftplugin = "setlocal comments< commentstring< formatoptions< iskeyword<"