Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " This is a GENERATED FILE. Please always refer to source file at the URI below. |
| 3 | " Language: XF86Config (XFree86 configuration file) |
Bram Moolenaar | 166af9b | 2010-11-16 20:34:40 +0100 | [diff] [blame] | 4 | " Former Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz> |
| 5 | " Last Change: 2010 Nov 01 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | " URL: http://trific.ath.cx/Ftp/vim/syntax/xf86conf.vim |
| 7 | " Required Vim Version: 6.0 |
| 8 | " |
| 9 | " Options: let xf86conf_xfree86_version = 3 or 4 |
| 10 | " to force XFree86 3.x or 4.x XF86Config syntax |
| 11 | |
| 12 | " Setup |
| 13 | if version >= 600 |
| 14 | if exists("b:current_syntax") |
| 15 | finish |
| 16 | endif |
| 17 | else |
| 18 | echo "Sorry, but this syntax file relies on Vim 6 features. Either upgrade Vim or usea version of " . expand("<sfile>:t:r") . " syntax file appropriate for Vim " . version/100 . "." . version %100 . "." |
| 19 | finish |
| 20 | endif |
| 21 | |
| 22 | if !exists("b:xf86conf_xfree86_version") |
| 23 | if exists("xf86conf_xfree86_version") |
| 24 | let b:xf86conf_xfree86_version = xf86conf_xfree86_version |
| 25 | else |
| 26 | let b:xf86conf_xfree86_version = 4 |
| 27 | endif |
| 28 | endif |
| 29 | |
| 30 | syn case ignore |
| 31 | |
| 32 | " Comments |
| 33 | syn match xf86confComment "#.*$" contains=xf86confTodo |
| 34 | syn case match |
| 35 | syn keyword xf86confTodo FIXME TODO XXX NOT contained |
| 36 | syn case ignore |
| 37 | syn match xf86confTodo "???" contained |
| 38 | |
| 39 | " Sectioning errors |
| 40 | syn keyword xf86confSectionError Section contained |
| 41 | syn keyword xf86confSectionError EndSection |
| 42 | syn keyword xf86confSubSectionError SubSection |
| 43 | syn keyword xf86confSubSectionError EndSubSection |
| 44 | syn keyword xf86confModeSubSectionError Mode |
| 45 | syn keyword xf86confModeSubSectionError EndMode |
| 46 | syn cluster xf86confSectionErrors contains=xf86confSectionError,xf86confSubSectionError,xf86confModeSubSectionError |
| 47 | |
| 48 | " Values |
| 49 | if b:xf86conf_xfree86_version >= 4 |
| 50 | syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained contains=xf86confSpecialChar,xf86confConstant,xf86confOptionName oneline keepend nextgroup=xf86confValue skipwhite |
| 51 | else |
| 52 | syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained contains=xf86confSpecialChar,xf86confOptionName oneline keepend |
| 53 | endif |
| 54 | syn match xf86confSpecialChar "\\\d\d\d\|\\." contained |
| 55 | syn match xf86confDecimalNumber "\(\s\|-\)\zs\d*\.\=\d\+\>" |
| 56 | syn match xf86confFrequency "\(\s\|-\)\zs\d\+\.\=\d*\(Hz\|k\|kHz\|M\|MHz\)" |
| 57 | syn match xf86confOctalNumber "\<0\o\+\>" |
| 58 | syn match xf86confOctalNumberError "\<0\o\+[89]\d*\>" |
| 59 | syn match xf86confHexadecimalNumber "\<0x\x\+\>" |
| 60 | syn match xf86confValue "\s\+.*$" contained contains=xf86confComment,xf86confString,xf86confFrequency,xf86conf\w\+Number,xf86confConstant |
| 61 | syn keyword xf86confOption Option nextgroup=xf86confString skipwhite |
| 62 | syn match xf86confModeLineValue "\"[^\"]\+\"\(\_s\+[0-9.]\+\)\{9}" nextgroup=xf86confSync skipwhite skipnl |
| 63 | |
| 64 | " Sections and subsections |
| 65 | if b:xf86conf_xfree86_version >= 4 |
Bram Moolenaar | 166af9b | 2010-11-16 20:34:40 +0100 | [diff] [blame] | 66 | syn region xf86confSection matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Device\|Video[_ ]*Adaptor\|Server[_ ]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\|InputClass\)\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOption,xf86confKeyword,xf86confSectionError |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 67 | syn region xf86confSectionModule matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Module\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionAny,xf86confComment,xf86confOption,xf86confKeyword |
| 68 | syn region xf86confSectionMonitor matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment,xf86confOption,xf86confKeyword |
| 69 | syn region xf86confSectionModes matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Modes\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment |
| 70 | syn region xf86confSectionScreen matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionDisplay,xf86confComment,xf86confOption,xf86confKeyword |
| 71 | syn region xf86confSubSectionAny matchgroup=xf86confSectionDelim start="^\s*SubSection\s\+\"[^\"]\+\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOption,xf86confKeyword,@xf86confSectionErrors |
| 72 | syn region xf86confSubSectionMode matchgroup=xf86confSectionDelim start="^\s*Mode\s\+\"[^\"]\+\"" end="^\s*EndMode\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confKeyword,@xf86confSectionErrors |
| 73 | syn region xf86confSubSectionDisplay matchgroup=xf86confSectionDelim start="^\s*SubSection\s\+\"Display\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOption,xf86confKeyword,@xf86confSectionErrors |
| 74 | else |
| 75 | syn region xf86confSection matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Device\|Keyboard\|Pointer\)\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword |
| 76 | syn region xf86confSectionMX matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"\(Module\|Xinput\)\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionAny,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword |
| 77 | syn region xf86confSectionMonitor matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword |
| 78 | syn region xf86confSectionScreen matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionDisplay,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword |
| 79 | syn region xf86confSubSectionAny matchgroup=xf86confSectionDelim start="^\s*SubSection\s\+\"[^\"]\+\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors |
| 80 | syn region xf86confSubSectionMode matchgroup=xf86confSectionDelim start="^\s*Mode\s\+\"[^\"]\+\"" end="^\s*EndMode\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors |
| 81 | syn region xf86confSubSectionDisplay matchgroup=xf86confSectionDelim start="^\s*SubSection\s\+\"Display\"" end="^\s*EndSubSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors |
| 82 | endif |
| 83 | |
| 84 | " Options |
| 85 | if b:xf86conf_xfree86_version >= 4 |
| 86 | command -nargs=+ Xf86confdeclopt syn keyword xf86confOptionName <args> contained |
| 87 | else |
| 88 | command -nargs=+ Xf86confdeclopt syn keyword xf86confOptionName <args> contained nextgroup=xf86confValue,xf86confComment skipwhite |
| 89 | endif |
| 90 | |
| 91 | Xf86confdeclopt 18bitBus AGPFastWrite AGPMode Accel AllowClosedownGrabs AllowDeactivateGrabs |
| 92 | Xf86confdeclopt AllowMouseOpenFail AllowNonLocalModInDev AllowNonLocalXvidtune AlwaysCore |
| 93 | Xf86confdeclopt AngleOffset AutoRepeat BaudRate BeamTimeout Beep BlankTime BlockWrite BottomX |
| 94 | Xf86confdeclopt BottomY ButtonNumber ButtonThreshold Buttons ByteSwap CacheLines ChordMiddle |
| 95 | Xf86confdeclopt ClearDTR ClearDTS ClickMode CloneDisplay CloneHSync CloneMode CloneVRefresh |
| 96 | Xf86confdeclopt ColorKey Composite CompositeSync CoreKeyboard CorePointer Crt2Memory CrtScreen |
| 97 | Xf86confdeclopt CrtcNumber CyberShadow CyberStretch DDC DDCMode DMAForXv DPMS Dac6Bit DacSpeed |
| 98 | Xf86confdeclopt DataBits Debug DebugLevel DefaultServerLayout DeltaX DeltaY Device DeviceName |
| 99 | Xf86confdeclopt DisableModInDev DisableVidModeExtension Display Display1400 DontVTSwitch |
| 100 | Xf86confdeclopt DontZap DontZoom DoubleScan DozeMode DozeScan DozeTime DragLockButtons |
| 101 | Xf86confdeclopt DualCount DualRefresh EarlyRasPrecharge Emulate3Buttons Emulate3Timeout |
| 102 | Xf86confdeclopt EmulateWheel EmulateWheelButton EmulateWheelInertia EnablePageFlip EnterCount |
| 103 | Xf86confdeclopt EstimateSizesAggressively ExternDisp FPClock16 FPClock24 FPClock32 |
| 104 | Xf86confdeclopt FPClock8 FPDither FastDram FifoAggresive FifoConservative FifoModerate |
| 105 | Xf86confdeclopt FireGL3000 FixPanelSize FlatPanel FlipXY FlowControl ForceCRT1 ForceCRT2Type |
| 106 | Xf86confdeclopt ForceLegacyCRT ForcePCIMode FpmVRAM FrameBufferWC FullMMIO GammaBrightness |
| 107 | Xf86confdeclopt HWClocks HWCursor HandleSpecialKeys HistorySize Interlace Interlaced InternDisp |
| 108 | Xf86confdeclopt InvX InvY InvertX InvertY KeepShape LCDClock LateRasPrecharge LcdCenter |
| 109 | Xf86confdeclopt LeftAlt Linear MGASDRAM MMIO MMIOCache MTTR MaxX MaxY MaximumXPosition |
| 110 | Xf86confdeclopt MaximumYPosition MinX MinY MinimumXPosition MinimumYPosition NoAccel |
| 111 | Xf86confdeclopt NoAllowMouseOpenFail NoAllowNonLocalModInDev NoAllowNonLocalXvidtune |
| 112 | Xf86confdeclopt NoBlockWrite NoCompositeSync NoCompression NoCrtScreen NoCyberShadow NoDCC |
| 113 | Xf86confdeclopt NoDDC NoDac6Bit NoDebug NoDisableModInDev NoDisableVidModeExtension NoDontZap |
| 114 | Xf86confdeclopt NoDontZoom NoFireGL3000 NoFixPanelSize NoFpmVRAM NoFrameBufferWC NoHWClocks |
| 115 | Xf86confdeclopt NoHWCursor NoHal NoLcdCenter NoLinear NoMGASDRAM NoMMIO NoMMIOCache NoMTTR |
| 116 | Xf86confdeclopt NoOverClockMem NoOverlay NoPC98 NoPM NoPciBurst NoPciRetry NoProbeClock |
| 117 | Xf86confdeclopt NoSTN NoSWCursor NoShadowFb NoShowCache NoSlowEDODRAM NoStretch NoSuspendHack |
| 118 | Xf86confdeclopt NoTexturedVideo NoTrapSignals NoUseFBDev NoUseModeline NoUseVclk1 NoVTSysReq |
| 119 | Xf86confdeclopt NoXVideo NvAGP OSMImageBuffers OffTime Origin OverClockMem Overlay |
| 120 | Xf86confdeclopt PC98 PCIBurst PM PWMActive PWMSleep PanelDelayCompensation PanelHeight |
| 121 | Xf86confdeclopt PanelOff PanelWidth Parity PciBurst PciRetry Pixmap Port PressDur PressPitch |
| 122 | Xf86confdeclopt PressVol ProbeClocks ProgramFPRegs Protocol RGBBits ReleaseDur ReleasePitch |
| 123 | Xf86confdeclopt ReportingMode Resolution RightAlt RightCtl Rotate STN SWCursor SampleRate |
| 124 | Xf86confdeclopt ScreenNumber ScrollLock SendCoreEvents SendDragEvents Serial ServerNumLock |
| 125 | Xf86confdeclopt SetLcdClk SetMClk SetRefClk ShadowFb ShadowStatus ShowCache SleepMode |
| 126 | Xf86confdeclopt SleepScan SleepTime SlowDram SlowEDODRAM StandbyTime StopBits Stretch |
| 127 | Xf86confdeclopt SuspendHack SuspendTime SwapXY SyncOnGreen TV TVOutput TVOverscan TVStandard |
| 128 | Xf86confdeclopt TVXPosOffset TVYPosOffset TexturedVideo Threshold Tilt TopX TopY TouchTime |
| 129 | Xf86confdeclopt TrapSignals Type USB UseBIOS UseFB UseFBDev UseFlatPanel UseModeline |
| 130 | Xf86confdeclopt UseROMData UseVclk1 VTInit VTSysReq VTime VideoKey Vmin XAxisMapping |
| 131 | Xf86confdeclopt XLeds XVideo XaaNoCPUToScreenColorExpandFill XaaNoColor8x8PatternFillRect |
| 132 | Xf86confdeclopt XaaNoColor8x8PatternFillTrap XaaNoDashedBresenhamLine XaaNoDashedTwoPointLine |
| 133 | Xf86confdeclopt XaaNoImageWriteRect XaaNoMono8x8PatternFillRect XaaNoMono8x8PatternFillTrap |
| 134 | Xf86confdeclopt XaaNoOffscreenPixmaps XaaNoPixmapCache XaaNoScanlineCPUToScreenColorExpandFill |
| 135 | Xf86confdeclopt XaaNoScanlineImageWriteRect XaaNoScreenToScreenColorExpandFill |
| 136 | Xf86confdeclopt XaaNoScreenToScreenCopy XaaNoSolidBresenhamLine XaaNoSolidFillRect |
| 137 | Xf86confdeclopt XaaNoSolidFillTrap XaaNoSolidHorVertLine XaaNoSolidTwoPointLine Xinerama |
| 138 | Xf86confdeclopt XkbCompat XkbDisable XkbGeometry XkbKeycodes XkbKeymap XkbLayout XkbModel |
| 139 | Xf86confdeclopt XkbOptions XkbRules XkbSymbols XkbTypes XkbVariant XvBskew XvHsync XvOnCRT2 |
| 140 | Xf86confdeclopt XvRskew XvVsync YAxisMapping ZAxisMapping ZoomOnLCD |
| 141 | |
| 142 | delcommand Xf86confdeclopt |
| 143 | |
| 144 | " Keywords |
| 145 | syn keyword xf86confKeyword Device Driver FontPath Group Identifier Load ModelName ModulePath Monitor RGBPath VendorName VideoAdaptor Visual nextgroup=xf86confComment,xf86confString skipwhite |
| 146 | syn keyword xf86confKeyword BiosBase Black BoardName BusID ChipID ChipRev Chipset nextgroup=xf86confComment,xf86confValue |
| 147 | syn keyword xf86confKeyword ClockChip Clocks DacSpeed DefaultDepth DefaultFbBpp nextgroup=xf86confComment,xf86confValue |
| 148 | syn keyword xf86confKeyword DefaultColorDepth nextgroup=xf86confComment,xf86confValue |
| 149 | syn keyword xf86confKeyword Depth DisplaySize DotClock FbBpp Flags Gamma HorizSync nextgroup=xf86confComment,xf86confValue |
| 150 | syn keyword xf86confKeyword Hskew HTimings InputDevice IOBase MemBase Mode nextgroup=xf86confComment,xf86confValue |
| 151 | syn keyword xf86confKeyword Modes Ramdac Screen TextClockFreq UseModes VendorName nextgroup=xf86confComment,xf86confValue |
| 152 | syn keyword xf86confKeyword VertRefresh VideoRam ViewPort Virtual VScan VTimings nextgroup=xf86confComment,xf86confValue |
| 153 | syn keyword xf86confKeyword Weight White nextgroup=xf86confComment,xf86confValue |
| 154 | syn keyword xf86confModeLine ModeLine nextgroup=xf86confComment,xf86confModeLineValue skipwhite skipnl |
| 155 | |
| 156 | " Constants |
| 157 | if b:xf86conf_xfree86_version >= 4 |
| 158 | syn keyword xf86confConstant true false on off yes no omit contained |
| 159 | else |
| 160 | syn keyword xf86confConstant Meta Compose Control |
| 161 | endif |
| 162 | syn keyword xf86confConstant StaticGray GrayScale StaticColor PseudoColor TrueColor DirectColor contained |
| 163 | syn keyword xf86confConstant Absolute RightOf LeftOf Above Below Relative StaticGray GrayScale StaticColor PseudoColor TrueColor DirectColor contained |
| 164 | syn match xf86confSync "\(\s\+[+-][CHV]_*Sync\)\+" contained |
| 165 | |
| 166 | " Synchronization |
| 167 | if b:xf86conf_xfree86_version >= 4 |
Bram Moolenaar | 166af9b | 2010-11-16 20:34:40 +0100 | [diff] [blame] | 168 | syn sync match xf86confSyncSection grouphere xf86confSection "^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Device\|Video[_ ]*Adaptor\|Server[_ ]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\|InputClass\)\"" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 169 | syn sync match xf86confSyncSectionModule grouphere xf86confSectionModule "^\s*Section\s\+\"Module\"" |
| 170 | syn sync match xf86confSyncSectionModes groupthere xf86confSectionModes "^\s*Section\s\+\"Modes\"" |
| 171 | else |
| 172 | syn sync match xf86confSyncSection grouphere xf86confSection "^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Device\|Keyboard\|Pointer\)\"" |
| 173 | syn sync match xf86confSyncSectionMX grouphere xf86confSectionMX "^\s*Section\s\+\"\(Module\|Xinput\)\"" |
| 174 | endif |
| 175 | syn sync match xf86confSyncSectionMonitor groupthere xf86confSectionMonitor "^\s*Section\s\+\"Monitor\"" |
| 176 | syn sync match xf86confSyncSectionScreen groupthere xf86confSectionScreen "^\s*Section\s\+\"Screen\"" |
| 177 | syn sync match xf86confSyncEndSection groupthere NONE "^\s*End_*Section\s*$" |
| 178 | |
| 179 | " Define the default highlighting |
| 180 | hi def link xf86confComment Comment |
| 181 | hi def link xf86confTodo Todo |
| 182 | hi def link xf86confSectionDelim Statement |
| 183 | hi def link xf86confOptionName Identifier |
| 184 | |
| 185 | hi def link xf86confSectionError xf86confError |
| 186 | hi def link xf86confSubSectionError xf86confError |
| 187 | hi def link xf86confModeSubSectionError xf86confError |
| 188 | hi def link xf86confOctalNumberError xf86confError |
| 189 | hi def link xf86confError Error |
| 190 | |
| 191 | hi def link xf86confOption xf86confKeyword |
| 192 | hi def link xf86confModeLine xf86confKeyword |
| 193 | hi def link xf86confKeyword Type |
| 194 | |
| 195 | hi def link xf86confDecimalNumber xf86confNumber |
| 196 | hi def link xf86confOctalNumber xf86confNumber |
| 197 | hi def link xf86confHexadecimalNumber xf86confNumber |
| 198 | hi def link xf86confFrequency xf86confNumber |
| 199 | hi def link xf86confModeLineValue Constant |
| 200 | hi def link xf86confNumber Constant |
| 201 | |
| 202 | hi def link xf86confSync xf86confConstant |
| 203 | hi def link xf86confConstant Special |
| 204 | hi def link xf86confSpecialChar Special |
| 205 | hi def link xf86confString String |
| 206 | |
| 207 | hi def link xf86confValue Constant |
| 208 | |
| 209 | let b:current_syntax = "xf86conf" |