view runtime/indent/context.vim @ 26968:014c9414ce02 v8.2.4013

patch 8.2.4013: build failure without the spell feature Commit: https://github.com/vim/vim/commit/e60b3c47d701e73ecbadb1b9a12bf82010cadae8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 5 20:40:34 2022 +0000 patch 8.2.4013: build failure without the spell feature Problem: Build failure without the spell feature. Solution: Adjust #ifdefs.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Jan 2022 21:45:03 +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