Mercurial > vim
view runtime/indent/wast.vim @ 32817:4fa5838c6952
Added tag v9.0.1722 for changeset 939396a5711c77c04810ba0fbff268fc0afb1ce5
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 17 Aug 2023 22:15:05 +0200 |
parents | 172f18a3a6cd |
children |
line wrap: on
line source
" Vim indent 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_indent") finish endif let b:did_indent = 1 " WebAssembly text format is S-expression. We can reuse LISP indentation " logic. setlocal indentexpr=lispindent('.') setlocal noautoindent nosmartindent let b:undo_indent = "setl lisp< indentexpr<"