Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: .desktop, .directory files |
| 3 | " according to freedesktop.org specification 0.9.4 |
| 4 | " http://pdx.freedesktop.org/Standards/desktop-entry-spec/desktop-entry-spec-0.9.4.html |
| 5 | " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) |
Bram Moolenaar | 939a1ab | 2016-04-10 01:31:25 +0200 | [diff] [blame] | 6 | " Last Change: 2016 Apr 02 |
| 7 | " (added "Keywords") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | " Version Info: desktop.vim 0.9.4-1.2 |
| 9 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 10 | " quit when a syntax file was already loaded |
| 11 | if exists("b:current_syntax") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 12 | finish |
| 13 | endif |
| 14 | |
| 15 | " This syntax file can be used to all *nix configuration files similar to dos |
| 16 | " ini format (eg. .xawtv, .radio, kde rc files) - this is default mode. But |
| 17 | " you can also enforce strict following of freedesktop.org standard for |
| 18 | " .desktop and .directory files . Set (eg. in vimrc) |
| 19 | " let enforce_freedesktop_standard = 1 |
| 20 | " and nonstandard extensions not following X- notation will not be highlighted. |
| 21 | if exists("enforce_freedesktop_standard") |
| 22 | let b:enforce_freedesktop_standard = 1 |
| 23 | else |
| 24 | let b:enforce_freedesktop_standard = 0 |
| 25 | endif |
| 26 | |
| 27 | " case on |
| 28 | syn case match |
| 29 | |
| 30 | " General |
| 31 | if b:enforce_freedesktop_standard == 0 |
| 32 | syn match dtNotStLabel "^.\{-}=\@=" nextgroup=dtDelim |
| 33 | endif |
| 34 | |
| 35 | syn match dtGroup /^\s*\[.*\]/ |
| 36 | syn match dtComment /^\s*#.*$/ |
| 37 | syn match dtDelim /=/ contained |
| 38 | |
| 39 | " Locale |
| 40 | syn match dtLocale /^\s*\<\(Name\|GenericName\|Comment\|SwallowTitle\|Icon\|UnmountIcon\)\>.*/ contains=dtLocaleKey,dtLocaleName,dtDelim transparent |
| 41 | syn keyword dtLocaleKey Name GenericName Comment SwallowTitle Icon UnmountIcon nextgroup=dtLocaleName containedin=dtLocale |
| 42 | syn match dtLocaleName /\(\[.\{-}\]\s*=\@=\|\)/ nextgroup=dtDelim containedin=dtLocale contained |
| 43 | |
| 44 | " Numeric |
| 45 | syn match dtNumeric /^\s*\<Version\>/ contains=dtNumericKey,dtDelim |
| 46 | syn keyword dtNumericKey Version nextgroup=dtDelim containedin=dtNumeric contained |
| 47 | |
| 48 | " Boolean |
| 49 | syn match dtBoolean /^\s*\<\(StartupNotify\|ReadOnly\|Terminal\|Hidden\|NoDisplay\)\>.*/ contains=dtBooleanKey,dtDelim,dtBooleanValue transparent |
| 50 | syn keyword dtBooleanKey StartupNotify ReadOnly Terminal Hidden NoDisplay nextgroup=dtDelim containedin=dtBoolean contained |
| 51 | syn keyword dtBooleanValue true false containedin=dtBoolean contained |
| 52 | |
| 53 | " String |
Bram Moolenaar | 939a1ab | 2016-04-10 01:31:25 +0200 | [diff] [blame] | 54 | syn match dtString /^\s*\<\(Encoding\|Icon\|Path\|Actions\|FSType\|MountPoint\|UnmountIcon\|URL\|Keywords\|Categories\|OnlyShowIn\|NotShowIn\|StartupWMClass\|FilePattern\|MimeType\)\>.*/ contains=dtStringKey,dtDelim transparent |
| 55 | syn keyword dtStringKey Type Encoding TryExec Exec Path Actions FSType MountPoint URL Keywords Categories OnlyShowIn NotShowIn StartupWMClass FilePattern MimeType nextgroup=dtDelim containedin=dtString contained |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 56 | |
| 57 | " Exec |
| 58 | syn match dtExec /^\s*\<\(Exec\|TryExec\|SwallowExec\)\>.*/ contains=dtExecKey,dtDelim,dtExecParam transparent |
| 59 | syn keyword dtExecKey Exec TryExec SwallowExec nextgroup=dtDelim containedin=dtExec contained |
| 60 | syn match dtExecParam /%[fFuUnNdDickv]/ containedin=dtExec contained |
| 61 | |
| 62 | " Type |
| 63 | syn match dtType /^\s*\<Type\>.*/ contains=dtTypeKey,dtDelim,dtTypeValue transparent |
| 64 | syn keyword dtTypeKey Type nextgroup=dtDelim containedin=dtType contained |
| 65 | syn keyword dtTypeValue Application Link FSDevice Directory containedin=dtType contained |
| 66 | |
| 67 | " X-Addition |
| 68 | syn match dtXAdd /^\s*X-.*/ contains=dtXAddKey,dtDelim transparent |
| 69 | syn match dtXAddKey /^\s*X-.\{-}\s*=\@=/ nextgroup=dtDelim containedin=dtXAdd contains=dtXLocale contained |
| 70 | |
| 71 | " Locale for X-Addition |
| 72 | syn match dtXLocale /\[.\{-}\]\s*=\@=/ containedin=dtXAddKey contained |
| 73 | |
| 74 | " Locale for all |
| 75 | syn match dtALocale /\[.\{-}\]\s*=\@=/ containedin=ALL |
| 76 | |
| 77 | |
| 78 | " Define the default highlighting. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 79 | " Only when an item doesn't have highlighting yet |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 80 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 81 | hi def link dtGroup Special |
| 82 | hi def link dtComment Comment |
| 83 | hi def link dtDelim String |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 84 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 85 | hi def link dtLocaleKey Type |
| 86 | hi def link dtLocaleName Identifier |
| 87 | hi def link dtXLocale Identifier |
| 88 | hi def link dtALocale Identifier |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 89 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 90 | hi def link dtNumericKey Type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 92 | hi def link dtBooleanKey Type |
| 93 | hi def link dtBooleanValue Constant |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 94 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 95 | hi def link dtStringKey Type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 96 | |
Bram Moolenaar | f37506f | 2016-08-31 22:22:10 +0200 | [diff] [blame] | 97 | hi def link dtExecKey Type |
| 98 | hi def link dtExecParam Special |
| 99 | hi def link dtTypeKey Type |
| 100 | hi def link dtTypeValue Constant |
| 101 | hi def link dtNotStLabel Type |
| 102 | hi def link dtXAddKey Type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 103 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | |
| 105 | let b:current_syntax = "desktop" |
| 106 | |
| 107 | " vim:ts=8 |