Mercurial > vim
view runtime/ftplugin/wast.vim @ 31511:90d7dfb0003d v9.0.1088
patch 9.0.1088: clang warns for unused variable
Commit: https://github.com/vim/vim/commit/9fca133eb78ce25531da394db904c4fa8d40b35c
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 22 21:06:41 2022 +0000
patch 9.0.1088: clang warns for unused variable
Problem: Clang warns for unused variable.
Solution: Adjust #ifdef. (John Marriott)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 22 Dec 2022 22:15:05 +0100 |
parents | 172f18a3a6cd |
children |
line wrap: on
line source
" Vim filetype plugin file " Language: WebAssembly " Maintainer: rhysd <lin90162@yahoo.co.jp> " Last Change: Jul 29, 2018 " 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:;),:;; setlocal commentstring=(;%s;) setlocal formatoptions-=t setlocal iskeyword+=$,.,/ let b:undo_ftplugin = "setlocal comments< commentstring< formatoptions< iskeyword<"