diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-08 17:07:20 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-10-08 17:17:43 +0200 |
commit | 19840728228f66c7f2af88dfc4bcecc26ffa064b (patch) | |
tree | 1b86d1d337ec9a97908d4b8bf3d48f4c439e54a6 /runtime/syntax/desktop.vim | |
parent | 31f6334aa8f8093ddfd2fd3ecf9fc438ad62a792 (diff) | |
parent | 7bc86b2bbc6800bc47a981ce86c906259020aa70 (diff) | |
download | rneovim-19840728228f66c7f2af88dfc4bcecc26ffa064b.tar.gz rneovim-19840728228f66c7f2af88dfc4bcecc26ffa064b.tar.bz2 rneovim-19840728228f66c7f2af88dfc4bcecc26ffa064b.zip |
Merge #5428 'vim-patch: 0c1ff16, 939a1ab, 8067a64'.
Diffstat (limited to 'runtime/syntax/desktop.vim')
-rw-r--r-- | runtime/syntax/desktop.vim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/syntax/desktop.vim b/runtime/syntax/desktop.vim index 5b71e51192..27dac5c8ee 100644 --- a/runtime/syntax/desktop.vim +++ b/runtime/syntax/desktop.vim @@ -3,7 +3,8 @@ " according to freedesktop.org specification 0.9.4 " http://pdx.freedesktop.org/Standards/desktop-entry-spec/desktop-entry-spec-0.9.4.html " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) -" Last Change: 2004 May 16 +" Last Change: 2016 Apr 02 +" (added "Keywords") " Version Info: desktop.vim 0.9.4-1.2 " For version 5.x: Clear all syntax items @@ -53,8 +54,8 @@ syn keyword dtBooleanKey StartupNotify ReadOnly Terminal Hidden NoDisplay nextgr syn keyword dtBooleanValue true false containedin=dtBoolean contained " String -syn match dtString /^\s*\<\(Encoding\|Icon\|Path\|Actions\|FSType\|MountPoint\|UnmountIcon\|URL\|Categories\|OnlyShowIn\|NotShowIn\|StartupWMClass\|FilePattern\|MimeType\)\>.*/ contains=dtStringKey,dtDelim transparent -syn keyword dtStringKey Type Encoding TryExec Exec Path Actions FSType MountPoint URL Categories OnlyShowIn NotShowIn StartupWMClass FilePattern MimeType nextgroup=dtDelim containedin=dtString contained +syn match dtString /^\s*\<\(Encoding\|Icon\|Path\|Actions\|FSType\|MountPoint\|UnmountIcon\|URL\|Keywords\|Categories\|OnlyShowIn\|NotShowIn\|StartupWMClass\|FilePattern\|MimeType\)\>.*/ contains=dtStringKey,dtDelim transparent +syn keyword dtStringKey Type Encoding TryExec Exec Path Actions FSType MountPoint URL Keywords Categories OnlyShowIn NotShowIn StartupWMClass FilePattern MimeType nextgroup=dtDelim containedin=dtString contained " Exec syn match dtExec /^\s*\<\(Exec\|TryExec\|SwallowExec\)\>.*/ contains=dtExecKey,dtDelim,dtExecParam transparent |