Mercurial > vim
view runtime/autoload/contextcomplete.vim @ 17610:c08a3c552c1d v8.1.1802
patch 8.1.1802: missing change to call_callback()
commit https://github.com/vim/vim/commit/b2129068a55261bea1e293a6a1ce8491a03e7de6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 3 18:31:11 2019 +0200
patch 8.1.1802: missing change to call_callback()
Problem: Missing change to call_callback().
Solution: Add missing change.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Aug 2019 18:45:05 +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