Mercurial > vim
view runtime/indent/wast.vim @ 30548:84ea6d876d43 v9.0.0609
patch 9.0.0609: blockedit test fails because of wrong indent
Commit: https://github.com/vim/vim/commit/66000ff9af8e3de93825ce7baa0c43727465eca5
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 27 17:47:12 2022 +0100
patch 9.0.0609: blockedit test fails because of wrong indent
Problem: Blockedit test fails because of wrong indent.
Solution: Adjust the expected text temporarily
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 27 Sep 2022 19:00:04 +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<"