Mercurial > vim
annotate runtime/syntax/taskedit.vim @ 16582:9a7d98e11954 v8.1.1294
patch 8.1.1294: MS-Windows: Some fonts return wrong average char width
commit https://github.com/vim/vim/commit/93d77b2cbec08518ee426d0c44c50cf505732443
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue May 7 22:52:50 2019 +0200
patch 8.1.1294: MS-Windows: Some fonts return wrong average char width
Problem: MS-Windows: Some fonts return wrong average char width.
Solution: Compute the average ourselves. (Ken Takata, closes https://github.com/vim/vim/issues/4356)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 07 May 2019 23:00:06 +0200 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
2034 | 1 " Vim syntax file |
2 " Language: support for 'task 42 edit' | |
3 " Maintainer: John Florian <jflorian@doubledog.org> | |
4 " Updated: Wed Jul 8 19:46:32 EDT 2009 | |
5 | |
6 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
3496
diff
changeset
|
7 " quit when a syntax file was already loaded. |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
3496
diff
changeset
|
8 if exists("b:current_syntax") |
2034 | 9 finish |
10 endif | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
11 let s:keepcpo= &cpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
12 set cpo&vim |
2034 | 13 |
14 syn match taskeditHeading "^\s*#\s*Name\s\+Editable details\s*$" contained | |
15 syn match taskeditHeading "^\s*#\s*-\+\s\+-\+\s*$" contained | |
16 syn match taskeditReadOnly "^\s*#\s*\(UU\)\?ID:.*$" contained | |
17 syn match taskeditReadOnly "^\s*#\s*Status:.*$" contained | |
18 syn match taskeditReadOnly "^\s*#\s*i\?Mask:.*$" contained | |
19 syn match taskeditKey "^ *.\{-}:" nextgroup=taskeditString | |
20 syn match taskeditComment "^\s*#.*$" | |
21 \ contains=taskeditReadOnly,taskeditHeading | |
22 syn match taskeditString ".*$" contained contains=@Spell | |
23 | |
24 | |
25 " The default methods for highlighting. Can be overridden later. | |
26 hi def link taskeditComment Comment | |
27 hi def link taskeditHeading Function | |
28 hi def link taskeditKey Statement | |
29 hi def link taskeditReadOnly Special | |
30 hi def link taskeditString String | |
31 | |
32 let b:current_syntax = "taskedit" | |
33 | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
34 let &cpo = s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
35 unlet s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
36 |
2034 | 37 " vim:noexpandtab |