Mercurial > vim
view runtime/indent/context.vim @ 26404:1bbb884c8561 v8.2.3733
patch 8.2.3733: Vim9: using "legacy" before range does not work
Commit: https://github.com/vim/vim/commit/b579f6ebbfa826d228abec1e1b24c05894517c27
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Dec 4 11:57:00 2021 +0000
patch 8.2.3733: Vim9: using "legacy" before range does not work
Problem: Vim9: using "legacy" before range does not work.
Solution: Skip over range before parsing command. (closes https://github.com/vim/vim/issues/9270)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 04 Dec 2021 13:00:05 +0100 |
parents | 07d2b5a3b7cc |
children | f00c56ee8118 |
line wrap: on
line source
" ConTeXt indent file " Language: ConTeXt typesetting engine " Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> " Last Change: 2016 Oct 15 if exists("b:did_indent") finish endif if !get(b:, 'context_metapost', get(g:, 'context_metapost', 1)) finish endif " Load MetaPost indentation script runtime! indent/mp.vim let s:keepcpo= &cpo set cpo&vim setlocal indentexpr=GetConTeXtIndent() let b:undo_indent = "setl indentexpr<" function! GetConTeXtIndent() " Use MetaPost rules inside MetaPost graphic environments if len(synstack(v:lnum, 1)) > 0 && \ synIDattr(synstack(v:lnum, 1)[0], "name") ==# 'contextMPGraphic' return GetMetaPostIndent() endif return -1 endfunc let &cpo = s:keepcpo unlet s:keepcpo " vim:sw=2