Mercurial > vim
view runtime/syntax/def.vim @ 26007:1d2e1c23e458 v8.2.3537
patch 8.2.3537: mode() does not return the right value in 'operatorfunc'
Commit: https://github.com/vim/vim/commit/75c30e96cf280a8cc01ac01c41a9252db3e503cc
Author: naohiro ono <obcat@icloud.com>
Date: Tue Oct 19 11:15:41 2021 +0100
patch 8.2.3537: mode() does not return the right value in 'operatorfunc'
Problem: mode() does not return the right value in 'operatorfunc'.
Solution: Reset finish_op while calling 'operatorfunc'.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 19 Oct 2021 12:30:05 +0200 |
parents | 46763b01cd9a |
children |
line wrap: on
line source
" Vim syntax file " Language: Microsoft Module-Definition (.def) File " Orig Author: Rob Brady <robb@datatone.com> " Maintainer: Wu Yongwei <wuyongwei@gmail.com> " Last Change: $Date: 2007/10/02 13:51:24 $ " $Revision: 1.2 $ " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif syn case ignore syn match defComment ";.*" syn keyword defKeyword LIBRARY STUB EXETYPE DESCRIPTION CODE WINDOWS DOS syn keyword defKeyword RESIDENTNAME PRIVATE EXPORTS IMPORTS SEGMENTS syn keyword defKeyword HEAPSIZE DATA syn keyword defStorage LOADONCALL MOVEABLE DISCARDABLE SINGLE syn keyword defStorage FIXED PRELOAD syn match defOrdinal "\s\+@\d\+" syn region defString start=+'+ end=+'+ syn match defNumber "\d+" syn match defNumber "0x\x\+" " Define the default highlighting. " Only when an item doesn't have highlighting yet hi def link defComment Comment hi def link defKeyword Keyword hi def link defStorage StorageClass hi def link defString String hi def link defNumber Number hi def link defOrdinal Operator let b:current_syntax = "def" " vim: ts=8