Mercurial > vim
view runtime/compiler/scdoc.vim @ 30839:942f1b3bc694 v9.0.0754
patch 9.0.0754: 'indentexpr' overrules lisp indenting in one situation
Commit: https://github.com/vim/vim/commit/a79b35b5781ae770334cec781d17fec3875f8108
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 10:49:36 2022 +0100
patch 9.0.0754: 'indentexpr' overrules lisp indenting in one situation
Problem: 'indentexpr' overrules lisp indenting in one situation.
Solution: Add "else" to keep the lisp indent. (issue https://github.com/vim/vim/issues/11327)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Oct 2022 12:00:03 +0200 |
parents | cd68a630f0d0 |
children | 99bf06d67e43 |
line wrap: on
line source
" scdoc compiler for Vim " Compiler: scdoc " Maintainer: Gregory Anders <contact@gpanders.com> " Last Updated: 2019-10-24 " Upstream: https://github.com/gpanders/vim-scdoc if exists('current_compiler') finish endif let current_compiler = 'scdoc' if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif CompilerSet makeprg=scdoc\ <\ %\ 2>&1 CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%#