Mercurial > vim
view runtime/autoload/contextcomplete.vim @ 11824:b276c1e73c27 v8.0.0792
patch 8.0.0792: spell test leaves files behind
commit https://github.com/vim/vim/commit/1a0f2005002a9993ba7313d1978fa2043314f8b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 28 15:38:10 2017 +0200
patch 8.0.0792: spell test leaves files behind
Problem: Spell test leaves files behind.
Solution: Delete the files.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 28 Jul 2017 15:45:04 +0200 |
parents | 07d2b5a3b7cc |
children |
line wrap: on
line source
" Language: ConTeXt typesetting engine " Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> " Latest Revision: 2016 Oct 15 let s:keepcpo= &cpo set cpo&vim " Complete keywords in MetaPost blocks function! contextcomplete#Complete(findstart, base) if a:findstart == 1 if len(synstack(line('.'), 1)) > 0 && \ synIDattr(synstack(line('.'), 1)[0], "name") ==# 'contextMPGraphic' return syntaxcomplete#Complete(a:findstart, a:base) else return -3 endif else return syntaxcomplete#Complete(a:findstart, a:base) endif endfunction let &cpo = s:keepcpo unlet s:keepcpo " vim: sw=2 fdm=marker