Hello David Nečas,
(vim-dev cc'ed)
you are listed in xf86conf.vim as former maintainer.
Since xf86conf.vim has been lastly updated X.org has gained new features,
therefor i have updated the listed keywords. Patch and updated xf86conf.vim
attached.
I also would like to have a discussion about how to improve and ease the
maintenance of xf86conf.vim.
,----[ man xorg.conf(5) ]-----------------------
Boolean options may optionally have a value specified. When no
value is specified, the option's value is TRUE. The following
boolean option values are recognised as TRUE:
1, on, true, yes
and the following boolean option values are recognised as
FALSE:
0, off, false, no
If an option name is prefixed with "No", then the option value
is negated.
Example: the following option entries are equivalent:
Option "Accel" "Off"
Option "NoAccel"
Option "NoAccel" "On"
Option "Accel" "false"
Option "Accel" "no"
`-----------------------------------------------
Currently the positiv logic "Feature"-case is handled well, but the
"NoFeauture"-case is simple handled currently as doubled list of feautures
listed. I would like to reduce that X feauture list to s.th. like:
Xf86confdeclopt {,No}{X11Features, ...}
but apprently i am not able to do it myself. Someone must assist here.
Either way I appreciate your past contributions and i would also appreciate i
you would send an updated readline.vim to Bram.
Best regards
--
bye Thilo
4096R/0xC70B1A8F
721B 1BA0 095C 1ABA 3FC6 7C18 89A4 A2A0 C70B 1A8F
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
" Vim syntax file
" This is a GENERATED FILE. Please always refer to source file at the URI below.
" Language: XF86Config (XFree86 configuration file)
" Former Maintainer: David Ne\v{c}as (Yeti) <[email protected]>
" Last Change: 2010 Nov 01
" URL: http://trific.ath.cx/Ftp/vim/syntax/xf86conf.vim
" Required Vim Version: 6.0
"
" Options: let xf86conf_xfree86_version = 3 or 4
" to force XFree86 3.x
or 4.x XF86Config syntax
" Setup
if version >= 600
if exists("b:current_syntax")
finish
endif
else
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 . "."
finish
endif
if !exists("b:xf86conf_xfree86_version")
if exists("xf86conf_xfree86_version")
let b:xf86conf_xfree86_version = xf86conf_xfree86_version
else
let b:xf86conf_xfree86_version = 4
endif
endif
syn case ignore
" Comments
syn match xf86confComment "#.*$" contains=xf86confTodo
syn case match
syn keyword xf86confTodo FIXME TODO XXX NOT contained
syn case ignore
syn match xf86confTodo "???" contained
" Sectioning errors
syn keyword xf86confSectionError Section contained
syn keyword xf86confSectionError EndSection
syn keyword xf86confSubSectionError SubSection
syn keyword xf86confSubSectionError EndSubSection
syn keyword xf86confModeSubSectionError Mode
syn keyword xf86confModeSubSectionError EndMode
syn cluster xf86confSectionErrors
contains=xf86confSectionError,xf86confSubSectionError,xf86confModeSubSectionError
" Values
if b:xf86conf_xfree86_version >= 4
syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained
contains=xf86confSpecialChar,xf86confConstant,xf86confOptionName oneline
keepend nextgroup=xf86confValue skipwhite
else
syn region xf86confString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained
contains=xf86confSpecialChar,xf86confOptionName oneline keepend
endif
syn match xf86confSpecialChar "\\\d\d\d\|\\." contained
syn match xf86confDecimalNumber "\(\s\|-\)\zs\d*\.\=\d\+\>"
syn match xf86confFrequency "\(\s\|-\)\zs\d\+\.\=\d*\(Hz\|k\|kHz\|M\|MHz\)"
syn match xf86confOctalNumber "\<0\o\+\>"
syn match xf86confOctalNumberError "\<0\o\+[89]\d*\>"
syn match xf86confHexadecimalNumber "\<0x\x\+\>"
syn match xf86confValue "\s\+.*$" contained
contains=xf86confComment,xf86confString,xf86confFrequency,xf86conf\w\+Number,xf86confConstant
syn keyword xf86confOption Option nextgroup=xf86confString skipwhite
syn match xf86confModeLineValue "\"[^\"]\+\"\(\_s\+[0-9.]\+\)\{9}"
nextgroup=xf86confSync skipwhite skipnl
" Sections and subsections
if b:xf86conf_xfree86_version >= 4
syn region xf86confSection matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Input[_
]*Class\|Device\|Video[_ ]*Adaptor\|Server[_
]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\)\""
end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOption,xf86confKeyword,xf86confSectionError
syn region xf86confSectionModule matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Module\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionAny,xf86confComment,xf86confOption,xf86confKeyword
syn region xf86confSectionMonitor matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment,xf86confOption,xf86confKeyword
syn region xf86confSectionModes matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Modes\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment
syn region xf86confSectionScreen matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionDisplay,xf86confComment,xf86confOption,xf86confKeyword
syn region xf86confSubSectionAny matchgroup=xf86confSectionDelim
start="^\s*SubSection\s\+\"[^\"]\+\"" end="^\s*EndSubSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOption,xf86confKeyword,@xf86confSectionErrors
syn region xf86confSubSectionMode matchgroup=xf86confSectionDelim
start="^\s*Mode\s\+\"[^\"]\+\"" end="^\s*EndMode\>" skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confKeyword,@xf86confSectionErrors
syn region xf86confSubSectionDisplay matchgroup=xf86confSectionDelim
start="^\s*SubSection\s\+\"Display\"" end="^\s*EndSubSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOption,xf86confKeyword,@xf86confSectionErrors
else
syn region xf86confSection matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"\(Files\|Server[_
]*Flags\|Device\|Keyboard\|Pointer\)\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword
syn region xf86confSectionMX matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"\(Module\|Xinput\)\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionAny,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword
syn region xf86confSectionMonitor matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword
syn region xf86confSectionScreen matchgroup=xf86confSectionDelim
start="^\s*Section\s\+\"Screen\"" end="^\s*EndSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confSubsectionDisplay,xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword
syn region xf86confSubSectionAny matchgroup=xf86confSectionDelim
start="^\s*SubSection\s\+\"[^\"]\+\"" end="^\s*EndSubSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors
syn region xf86confSubSectionMode matchgroup=xf86confSectionDelim
start="^\s*Mode\s\+\"[^\"]\+\"" end="^\s*EndMode\>" skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors
syn region xf86confSubSectionDisplay matchgroup=xf86confSectionDelim
start="^\s*SubSection\s\+\"Display\"" end="^\s*EndSubSection\>"
skip="#.*$\|\"[^\"]*\""
contains=xf86confComment,xf86confOptionName,xf86confOption,xf86confKeyword,@xf86confSectionErrors
endif
" Options
if b:xf86conf_xfree86_version >= 4
command -nargs=+ Xf86confdeclopt syn keyword xf86confOptionName <args>
contained
else
command -nargs=+ Xf86confdeclopt syn keyword xf86confOptionName <args>
contained nextgroup=xf86confValue,xf86confComment skipwhite
endif
"Xf86confdeclopt
Xf86confdeclopt 18bitBus Above Accel AccelDFS AccelerationDenominator
AccelerationNumerator AccelerationProfile AccelerationScheme AddARGBGLXVisuals
Xf86confdeclopt AccelerationThreshold AccelFactor AccelMethod
AdaptiveDeceleration AGPFastWrite AGPMode AIGLX AllowClosedownGrabs
Xf86confdeclopt AllowDeactivateGrabs AllowEmptyInput AllowMouseOpenFail
AllowNonLocalModInDev AllowNonLocalXvidtune AlwaysCore
Xf86confdeclopt AngleOffset AreaBottomEdge AreaLeftEdge AreaRightEdge
AreaTopEdge AutoAddDevices AutoEnableDevices AutoRepeat
Xf86confdeclopt AutoServerLayout BaudRate BeamTimeout Beep Below BlankTime
BlockWrite BottomEdge BottomX BottomY ButtonMapping
Xf86confdeclopt ButtonNumber Buttons ButtonThreshold ByteSwap CacheLines
Calibration ChordMiddle CircScrollDelta CircScrollTrigger
Xf86confdeclopt CircularPad CircularScrolling ClearDTR ClearDTS ClickFinger1
ClickFinger2 ClickFinger3 ClickMode ClickTime CloneDisplay
Xf86confdeclopt CloneHSync CloneMode CloneVRefresh CoastingSpeed ColorKey
ColorTiling Composite CompositeSync ConstantDeceleration
Xf86confdeclopt CoreKeyboard CorePointer CornerCoasting Crt2Memory CrtcNumber
CrtScreen CyberShadow CyberStretch Dac6Bit DacSpeed
Xf86confdeclopt DataBits DBE DDC DDCMode Debug DebugLevel DefaultServerLayout
DeltaX DeltaY Device DeviceName DisableModInDev DevicePresence
Xf86confdeclopt DisableVidModeExtension Display Display1400 DMAForXv
DontVTSwitch DontZap DontZoom DoubleScan DozeMode DozeScan DozeTime
Xf86confdeclopt DPMS DragLockButtons DRI DRI2 DualCount DualRefresh
EarlyRasPrecharge EdgeMotionMaxSpeed EdgeMotionMaxZ
Xf86confdeclopt EdgeMotionMinSpeed EdgeMotionMinZ EdgeMotionUseAlways
Emulate3Buttons Emulate3Timeout EmulateMidButtonTime
Xf86confdeclopt EmulateTwoFingerMinW EmulateTwoFingerMinZ EmulateWheel
EmulateWheelButton EmulateWheelInertia EmulateWheelTimeout Enable
Xf86confdeclopt EnablePageFlip EnterCount EstimateSizesAggressively
EXAOptimizeMigration ExternDisp EXTMOD FastDram FastTaps
Xf86confdeclopt FifoAggresive FifoConservative FifoModerate FingerHigh
FingerLow FingerPress FireGL3000 FixPanelSize FlatPanel FlipXY
Xf86confdeclopt FlowControl ForceCRT1 ForceCRT2Type ForceDevice ForceLegacyCRT
ForcePCIMode FPClock16 FPClock24 FPClock32 FPClock8
Xf86confdeclopt FPDither FpmVRAM FrameBufferWC FullMMIO GammaBrightness GLcore
GLX GlxVisuals GrabDevice GrabEventDevice GuestMouseOff
Xf86confdeclopt HandleSpecialKeys HistorySize HorizEdgeScroll HorizResolution
HorizScrollDelta HorizTwoFingerScroll HWClocks HWCursor
Xf86confdeclopt Ignore IgnoreABI IgnoreAbsoluteAxes IgnoreRelativeAxes
InitPrimary Interlace Interlaced InternDisp InvertX InvertY InvX
Xf86confdeclopt InvY IsolateDevice KeepShape LateRasPrecharge LBCornerButton
LcdCenter LCDClock LeftAlt LeftEdge LeftOf
Xf86confdeclopt LeftRightScrolling LeftRightScrollRepeat Linear LockedDrags
LockedDragTimeout Log LTCornerButton LVDSBiosNativeMode
Xf86confdeclopt MaxClock MaxDoubleTapTime MaximumXPosition MaximumYPosition
MaxSpeed MaxTapMove MaxTapTime MaxX MaxY MGASDRAM
Xf86confdeclopt MigrationHeuristic MinClock MinimumXPosition MinimumYPosition
MinSpeed MinX MinY MMIO MMIOCache ModeDebug MonitorLayout
Xf86confdeclopt MTTR NvAGP OffTime Origin OSMImageBuffers OverClockMem Overlay
PalmDetect PalmMinWidth PalmMinZ PanelDelayCompensation
Xf86confdeclopt PanelHeight PanelOff PanelWidth Parity PC98 PCIBurst PciRetry
Pixmap PM Port Position PressDur PressPitch
Xf86confdeclopt PressureMotionMaxFactor PressureMotionMaxZ
PressureMotionMinFactor PressureMotionMinZ PressVol Primary ProbeClocks
Xf86confdeclopt ProgramFPRegs Protocol PWMActive PWMSleep RBCornerButton RECORD
ReleaseDur ReleasePitch ReopenAttempts ReportingMode
Xf86confdeclopt Resolution RGBBits RightAlt RightCtl RightEdge RightOf Rotate
RTCornerButton SampleRate ScreenNumber ScrollButtonRepeat
Xf86confdeclopt ScrollLock SendCoreEvents SendDragEvents Serial ServerNumLock
SetLcdClk SetMClk SetRefClk ShadowFb ShadowStatus
Xf86confdeclopt SHMConfig ShowCache SingleCard SingleTapTimeout SleepMode
SleepScan SleepTime SlowDram SlowEDODRAM StandbyTime STN
Xf86confdeclopt StopBits Stretch SuspendHack SuspendTime SwapAxes SwapXY
SWCursor SyncOnGreen TapAndDragGesture TapButton1 TapButton2
Xf86confdeclopt TapButton3 TexturedVideo Threshold Tiling Tilt TopEdge TopX
TopY TouchpadOff TouchTime TrackstickSpeed TrapSignals TV
Xf86confdeclopt TVOutput TVOverscan TVStandard TVXPosOffset TVYPosOffset Type
UpDownScrolling UpDownScrollRepeat USB UseBIOS
Xf86confdeclopt UseDefaultFontPath UseFB UseFBDev UseFlatPanel UseModeline
UseROMData UseSIGIO UseVclk1 VertEdgeScroll VertResolution
Xf86confdeclopt VertScrollDelta VertTwoFingerScroll VideoKey Vmin VTime VTInit
VTSysReq XaaNoColor8x8PatternFillRect
Xf86confdeclopt XaaNoColor8x8PatternFillTrap XaaNoCPUToScreenColorExpandFill
XaaNoDashedBresenhamLine XaaNoDashedTwoPointLine
Xf86confdeclopt XaaNoImageWriteRect XaaNoMono8x8PatternFillRect
XaaNoMono8x8PatternFillTrap XaaNoOffscreenPixmaps XaaNoPixmapCache
Xf86confdeclopt XaaNoScanlineCPUToScreenColorExpandFill
XaaNoScanlineImageWriteRect XaaNoScreenToScreenColorExpandFill
Xf86confdeclopt XaaNoScreenToScreenCopy XaaNoSolidBresenhamLine
XaaNoSolidFillRect XaaNoSolidFillTrap XaaNoSolidHorVertLine
Xf86confdeclopt XaaNoSolidTwoPointLine XAxisMapping Xinerama XkbCompat
XkbDisable XkbGeometry XkbKeycodes XkbKeymap XkbLayout XkbModel
Xf86confdeclopt XkbOptions XkbRules XkbSymbols XkbTypes XkbVariant XLeds
XvBskew XvHsync XVideo XvOnCRT2 XvRskew XvVsync YAxisMapping
Xf86confdeclopt ZAxisMapping ZoomOnLCD
Xf86confdeclopt No18bitBus NoAbove NoAccel NoAccelDFS NoAccelerationDenominator
NoAccelerationNumerator NoAccelerationProfile
Xf86confdeclopt NoAccelerationScheme NoAccelerationThreshold NoAccelFactor
NoAccelMethod NoAdaptiveDeceleration NoAGPFastWrite NoAGPMode
Xf86confdeclopt NoAIGLX NoAllowClosedownGrabs NoAllowDeactivateGrabs
NoAllowEmptyInput NoAllowMouseOpenFail NoAllowNonLocalModInDev
Xf86confdeclopt NoAllowNonLocalXvidtune NoAlwaysCore NoAngleOffset
NoAreaBottomEdge NoAreaLeftEdge NoAreaRightEdge NoAreaTopEdge
Xf86confdeclopt NoAutoAddDevices NoAutoEnableDevices NoAutoRepeat
NoAutoServerLayout NoBaudRate NoBeamTimeout NoBeep NoBelow NoBlankTime
Xf86confdeclopt NoBlockWrite NoBottomEdge NoBottomX NoBottomY NoButtonMapping
NoButtonNumber NoButtons NoButtonThreshold NoByteSwap
Xf86confdeclopt NoCacheLines NoCalibration NoChordMiddle NoCircScrollDelta
NoCircScrollTrigger NoCircularPad NoCircularScrolling
Xf86confdeclopt NoClearDTR NoClearDTS NoClickFinger1 NoClickFinger2
NoClickFinger3 NoClickMode NoClickTime NoCloneDisplay NoCloneHSync
Xf86confdeclopt NoCloneMode NoCloneVRefresh NoCoastingSpeed NoColorKey
NoColorTiling NoComposite NoCompositeSync NoCompression
Xf86confdeclopt NoConstantDeceleration NoCoreKeyboard NoCorePointer
NoCornerCoasting NoCrt2Memory NoCrtcNumber NoCrtScreen NoCyberShadow
Xf86confdeclopt NoCyberStretch NoDac6Bit NoDacSpeed NoDataBits NoDBE NoDCC
NoDDC NoDDCMode NoDebug NoDebugLevel NoDefaultServerLayout
Xf86confdeclopt NoDeltaX NoDeltaY NoDevice NoDeviceName NoDisableModInDev
NoDisableVidModeExtension NoDisplay NoDisplay1400 NoDMAForXv
Xf86confdeclopt NoDontVTSwitch NoDontZap NoDontZoom NoDoubleScan NoDozeMode
NoDozeScan NoDozeTime NoDPMS NoDragLockButtons NoDRI NoDRI2
Xf86confdeclopt NoDualCount NoDualRefresh NoEarlyRasPrecharge
NoEdgeMotionMaxSpeed NoEdgeMotionMaxZ NoEdgeMotionMinSpeed
Xf86confdeclopt NoEdgeMotionMinZ NoEdgeMotionUseAlways NoEmulate3Buttons
NoEmulate3Timeout NoEmulateMidButtonTime NoEmulateTwoFingerMinW
Xf86confdeclopt NoEmulateTwoFingerMinZ NoEmulateWheel NoEmulateWheelButton
NoEmulateWheelInertia NoEmulateWheelTimeout NoEnable
Xf86confdeclopt NoEnablePageFlip NoEnterCount NoEstimateSizesAggressively
NoEXAOptimizeMigration NoExternDisp NoEXTMOD NoFastDram
Xf86confdeclopt NoFastTaps NoFifoAggresive NoFifoConservative NoFifoModerate
NoFingerHigh NoFingerLow NoFingerPress NoFireGL3000
Xf86confdeclopt NoFixPanelSize NoFlatPanel NoFlipXY NoFlowControl NoForceCRT1
NoForceCRT2Type NoForceDevice NoForceLegacyCRT
Xf86confdeclopt NoForcePCIMode NoFPClock16 NoFPClock24 NoFPClock32 NoFPClock8
NoFPDither NoFpmVRAM NoFrameBufferWC NoFullMMIO
Xf86confdeclopt NoGammaBrightness NoGLcore NoGLX NoGlxVisuals NoGrabDevice
NoGrabEventDevice NoGuestMouseOff NoHal NoHandleSpecialKeys
Xf86confdeclopt NoHistorySize NoHorizEdgeScroll NoHorizResolution
NoHorizScrollDelta NoHorizTwoFingerScroll NoHWClocks NoHWCursor
Xf86confdeclopt NoIgnore NoIgnoreABI NoIgnoreAbsoluteAxes NoIgnoreRelativeAxes
NoInitPrimary NoInt10 NoInterlace NoInterlaced
Xf86confdeclopt NoInternDisp NoInvertX NoInvertY NoInvX NoInvY NoIsolateDevice
NoKeepShape NoLateRasPrecharge NoLBCornerButton
Xf86confdeclopt NoLcdCenter NoLCDClock NoLeftAlt NoLeftEdge NoLeftOf
NoLeftRightScrolling NoLeftRightScrollRepeat NoLinear NoLockedDrags
Xf86confdeclopt NoLockedDragTimeout NoLog NoLTCornerButton NoLVDSBiosNativeMode
NoMaxClock NoMaxDoubleTapTime NoMaximumXPosition
Xf86confdeclopt NoMaximumYPosition NoMaxSpeed NoMaxTapMove NoMaxTapTime NoMaxX
NoMaxY NoMGASDRAM NoMigrationHeuristic NoMinClock
Xf86confdeclopt NoMinimumXPosition NoMinimumYPosition NoMinSpeed NoMinX NoMinY
NoMMIO NoMMIOCache NoModeDebug NoMonitorLayout NoMTRR
Xf86confdeclopt NoMTTR NoNvAGP NoOffTime NoOrigin NoOSMImageBuffers
NoOverClockMem NoOverlay NoPalmDetect NoPalmMinWidth NoPalmMinZ
Xf86confdeclopt NoPanelDelayCompensation NoPanelHeight NoPanelOff NoPanelWidth
NoParity NoPC98 NoPciBurst NoPciRetry NoPixmap NoPM
Xf86confdeclopt NoPort NoPosition NoPressDur NoPressPitch
NoPressureMotionMaxFactor NoPressureMotionMaxZ NoPressureMotionMinFactor
Xf86confdeclopt NoPressureMotionMinZ NoPressVol NoPrimary NoProbeClock
NoProbeClocks NoProgramFPRegs NoProtocol NoPWMActive NoPWMSleep
Xf86confdeclopt NoRBCornerButton NoRECORD NoReleaseDur NoReleasePitch
NoReopenAttempts NoReportingMode NoResolution NoRGBBits NoRightAlt
Xf86confdeclopt NoRightCtl NoRightEdge NoRightOf NoRotate NoRTCornerButton
NoSampleRate NoScreenNumber NoScrollButtonRepeat NoScrollLock
Xf86confdeclopt NoSendCoreEvents NoSendDragEvents NoSerial NoServerNumLock
NoSetLcdClk NoSetMClk NoSetRefClk NoShadowFb NoShadowStatus
Xf86confdeclopt NoSHMConfig NoShowCache NoSingleCard NoSingleTapTimeout
NoSleepMode NoSleepScan NoSleepTime NoSlowDram NoSlowEDODRAM
Xf86confdeclopt NoStandbyTime NoSTN NoStopBits NoStretch NoSuspendHack
NoSuspendTime NoSwapAxes NoSwapXY NoSWCursor NoSyncOnGreen
Xf86confdeclopt NoTapAndDragGesture NoTapButton1 NoTapButton2 NoTapButton3
NoTexturedVideo NoThreshold NoTiling NoTilt NoTopEdge NoTopX
Xf86confdeclopt NoTopY NoTouchpadOff NoTouchTime NoTrackstickSpeed
NoTrapSignals NoTV NoTVOutput NoTVOverscan NoTVStandard
Xf86confdeclopt NoTVXPosOffset NoTVYPosOffset NoType NoUpDownScrolling
NoUpDownScrollRepeat NoUSB NoUseBIOS NoUseDefaultFontPath NoUseFB
Xf86confdeclopt NoUseFBDev NoUseFlatPanel NoUseModeline NoUseROMData NoUseSIGIO
NoUseVclk1 NoVertEdgeScroll NoVertResolution
Xf86confdeclopt NoVertScrollDelta NoVertTwoFingerScroll NoVideoKey NoVmin
NoVTime NoVTInit NoVTSysReq NoXaaNoColor8x8PatternFillRect
Xf86confdeclopt NoXaaNoColor8x8PatternFillTrap
NoXaaNoCPUToScreenColorExpandFill NoXaaNoDashedBresenhamLine
NoXaaNoDashedTwoPointLine
Xf86confdeclopt NoXaaNoImageWriteRect NoXaaNoMono8x8PatternFillRect
NoXaaNoMono8x8PatternFillTrap NoXaaNoOffscreenPixmaps
Xf86confdeclopt NoXaaNoPixmapCache NoXaaNoScanlineCPUToScreenColorExpandFill
NoXaaNoScanlineImageWriteRect
Xf86confdeclopt NoXaaNoScreenToScreenColorExpandFill NoXaaNoScreenToScreenCopy
NoXaaNoSolidBresenhamLine NoXaaNoSolidFillRect
Xf86confdeclopt NoXaaNoSolidFillTrap NoXaaNoSolidHorVertLine
NoXaaNoSolidTwoPointLine NoXAxisMapping NoXinerama NoXkbCompat NoXkbDisable
Xf86confdeclopt NoXkbGeometry NoXkbKeycodes NoXkbKeymap NoXkbLayout NoXkbModel
NoXkbOptions NoXkbRules NoXkbSymbols NoXkbTypes
Xf86confdeclopt NoXkbVariant NoXLeds NoXvBskew NoXvHsync NoXVideo NoXvOnCRT2
NoXvRskew NoXvVsync NoYAxisMapping NoZAxisMapping
Xf86confdeclopt NoZoomOnLCD
delcommand Xf86confdeclopt
" Keywords
syn keyword xf86confKeyword Device Driver FontPath Group Identifier Load
MatchDevicePath nextgroup=xf86confComment,xf86confString skipwhite
syn keyword xf86confKeyword MatchIsJoystick MatchIsKeyboard MatchIsPointer
MatchIsTablet nextgroup=xf86confComment,xf86confString skipwhite
syn keyword xf86confKeyword MatchIsTouchpad MatchIsTouchscreen MatchProduct
MatchTag nextgroup=xf86confComment,xf86confString skipwhite
syn keyword xf86confKeyword MatchVendor ModelName ModulePath Monitor RGBPath
VendorName nextgroup=xf86confComment,xf86confString skipwhite
syn keyword xf86confKeyword VideoAdaptor Visual
nextgroup=xf86confComment,xf86confString skipwhite
syn keyword xf86confKeyword BiosBase Black BoardName BusID ChipID ChipRev
Chipset ClockChip Clocks nextgroup=xf86confComment,xf86confValue
syn keyword xf86confKeyword DacSpeed DefaultColorDepth DefaultDepth
DefaultFbBpp Depth DisplaySize nextgroup=xf86confComment,xf86confValue
syn keyword xf86confKeyword DotClock FbBpp Flags Gamma HorizSync Hskew HTimings
InputDevice IOBase nextgroup=xf86confComment,xf86confValue
syn keyword xf86confKeyword MemBase Mode Modes Ramdac Screen TextClockFreq
UseModes VendorName nextgroup=xf86confComment,xf86confValue
syn keyword xf86confKeyword VertRefresh VideoRam ViewPort Virtual VScan
VTimings Weight White nextgroup=xf86confComment,xf86confValue
syn keyword xf86confModeLine ModeLine
nextgroup=xf86confComment,xf86confModeLineValue skipwhite skipnl
" Constants
if b:xf86conf_xfree86_version >= 4
syn keyword xf86confConstant true false on off yes no omit contained
else
syn keyword xf86confConstant Meta Compose Control
endif
syn keyword xf86confConstant StaticGray GrayScale StaticColor PseudoColor
TrueColor DirectColor contained
syn keyword xf86confConstant Absolute RightOf LeftOf Above Below Relative
StaticGray GrayScale StaticColor PseudoColor TrueColor DirectColor contained
syn match xf86confSync "\(\s\+[+-][CHV]_*Sync\)\+" contained
" Synchronization
if b:xf86conf_xfree86_version >= 4
syn sync match xf86confSyncSection grouphere xf86confSection
"^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Device\|Input[_
]*Class\|Video[_ ]*Adaptor\|Server[_
]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\)\""
syn sync match xf86confSyncSectionModule grouphere
xf86confSectionModule "^\s*Section\s\+\"Module\""
syn sync match xf86confSyncSectionModes groupthere xf86confSectionModes
"^\s*Section\s\+\"Modes\""
else
syn sync match xf86confSyncSection grouphere xf86confSection
"^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Device\|Keyboard\|Pointer\)\""
syn sync match xf86confSyncSectionMX grouphere xf86confSectionMX
"^\s*Section\s\+\"\(Module\|Xinput\)\""
endif
syn sync match xf86confSyncSectionMonitor groupthere xf86confSectionMonitor
"^\s*Section\s\+\"Monitor\""
syn sync match xf86confSyncSectionScreen groupthere xf86confSectionScreen
"^\s*Section\s\+\"Screen\""
syn sync match xf86confSyncEndSection groupthere NONE "^\s*End_*Section\s*$"
" Define the default highlighting
hi def link xf86confComment Comment
hi def link xf86confTodo Todo
hi def link xf86confSectionDelim Statement
hi def link xf86confOptionName Identifier
hi def link xf86confSectionError xf86confError
hi def link xf86confSubSectionError xf86confError
hi def link xf86confModeSubSectionError xf86confError
hi def link xf86confOctalNumberError xf86confError
hi def link xf86confError Error
hi def link xf86confOption xf86confKeyword
hi def link xf86confModeLine xf86confKeyword
hi def link xf86confKeyword Type
hi def link xf86confDecimalNumber xf86confNumber
hi def link xf86confOctalNumber xf86confNumber
hi def link xf86confHexadecimalNumber xf86confNumber
hi def link xf86confFrequency xf86confNumber
hi def link xf86confModeLineValue Constant
hi def link xf86confNumber Constant
hi def link xf86confSync xf86confConstant
hi def link xf86confConstant Special
hi def link xf86confSpecialChar Special
hi def link xf86confString String
hi def link xf86confValue Constant
let b:current_syntax = "xf86conf"
--- xf86conf.vim.orig 2011-03-22 22:37:01.000000000 +0100
+++ xf86conf.vim 2011-03-05 04:44:35.000000000 +0100
@@ -63,7 +63,7 @@
" Sections and subsections
if b:xf86conf_xfree86_version >= 4
- 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
+ syn region xf86confSection matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Input[_ ]*Class\|Device\|Video[_ ]*Adaptor\|Server[_ ]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\)\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confComment,xf86confOption,xf86confKeyword,xf86confSectionError
syn region xf86confSectionModule matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Module\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionAny,xf86confComment,xf86confOption,xf86confKeyword
syn region xf86confSectionMonitor matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Monitor\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment,xf86confOption,xf86confKeyword
syn region xf86confSectionModes matchgroup=xf86confSectionDelim start="^\s*Section\s\+\"Modes\"" end="^\s*EndSection\>" skip="#.*$\|\"[^\"]*\"" contains=xf86confSubsectionMode,xf86confModeLine,xf86confComment
@@ -88,69 +88,120 @@
command -nargs=+ Xf86confdeclopt syn keyword xf86confOptionName <args> contained nextgroup=xf86confValue,xf86confComment skipwhite
endif
-Xf86confdeclopt 18bitBus AGPFastWrite AGPMode Accel AllowClosedownGrabs AllowDeactivateGrabs
-Xf86confdeclopt AllowMouseOpenFail AllowNonLocalModInDev AllowNonLocalXvidtune AlwaysCore
-Xf86confdeclopt AngleOffset AutoRepeat BaudRate BeamTimeout Beep BlankTime BlockWrite BottomX
-Xf86confdeclopt BottomY ButtonNumber ButtonThreshold Buttons ByteSwap CacheLines ChordMiddle
-Xf86confdeclopt ClearDTR ClearDTS ClickMode CloneDisplay CloneHSync CloneMode CloneVRefresh
-Xf86confdeclopt ColorKey Composite CompositeSync CoreKeyboard CorePointer Crt2Memory CrtScreen
-Xf86confdeclopt CrtcNumber CyberShadow CyberStretch DDC DDCMode DMAForXv DPMS Dac6Bit DacSpeed
-Xf86confdeclopt DataBits Debug DebugLevel DefaultServerLayout DeltaX DeltaY Device DeviceName
-Xf86confdeclopt DisableModInDev DisableVidModeExtension Display Display1400 DontVTSwitch
-Xf86confdeclopt DontZap DontZoom DoubleScan DozeMode DozeScan DozeTime DragLockButtons
-Xf86confdeclopt DualCount DualRefresh EarlyRasPrecharge Emulate3Buttons Emulate3Timeout
-Xf86confdeclopt EmulateWheel EmulateWheelButton EmulateWheelInertia EnablePageFlip EnterCount
-Xf86confdeclopt EstimateSizesAggressively ExternDisp FPClock16 FPClock24 FPClock32
-Xf86confdeclopt FPClock8 FPDither FastDram FifoAggresive FifoConservative FifoModerate
-Xf86confdeclopt FireGL3000 FixPanelSize FlatPanel FlipXY FlowControl ForceCRT1 ForceCRT2Type
-Xf86confdeclopt ForceLegacyCRT ForcePCIMode FpmVRAM FrameBufferWC FullMMIO GammaBrightness
-Xf86confdeclopt HWClocks HWCursor HandleSpecialKeys HistorySize Interlace Interlaced InternDisp
-Xf86confdeclopt InvX InvY InvertX InvertY KeepShape LCDClock LateRasPrecharge LcdCenter
-Xf86confdeclopt LeftAlt Linear MGASDRAM MMIO MMIOCache MTTR MaxX MaxY MaximumXPosition
-Xf86confdeclopt MaximumYPosition MinX MinY MinimumXPosition MinimumYPosition NoAccel
-Xf86confdeclopt NoAllowMouseOpenFail NoAllowNonLocalModInDev NoAllowNonLocalXvidtune
-Xf86confdeclopt NoBlockWrite NoCompositeSync NoCompression NoCrtScreen NoCyberShadow NoDCC
-Xf86confdeclopt NoDDC NoDac6Bit NoDebug NoDisableModInDev NoDisableVidModeExtension NoDontZap
-Xf86confdeclopt NoDontZoom NoFireGL3000 NoFixPanelSize NoFpmVRAM NoFrameBufferWC NoHWClocks
-Xf86confdeclopt NoHWCursor NoHal NoLcdCenter NoLinear NoMGASDRAM NoMMIO NoMMIOCache NoMTTR
-Xf86confdeclopt NoOverClockMem NoOverlay NoPC98 NoPM NoPciBurst NoPciRetry NoProbeClock
-Xf86confdeclopt NoSTN NoSWCursor NoShadowFb NoShowCache NoSlowEDODRAM NoStretch NoSuspendHack
-Xf86confdeclopt NoTexturedVideo NoTrapSignals NoUseFBDev NoUseModeline NoUseVclk1 NoVTSysReq
-Xf86confdeclopt NoXVideo NvAGP OSMImageBuffers OffTime Origin OverClockMem Overlay
-Xf86confdeclopt PC98 PCIBurst PM PWMActive PWMSleep PanelDelayCompensation PanelHeight
-Xf86confdeclopt PanelOff PanelWidth Parity PciBurst PciRetry Pixmap Port PressDur PressPitch
-Xf86confdeclopt PressVol ProbeClocks ProgramFPRegs Protocol RGBBits ReleaseDur ReleasePitch
-Xf86confdeclopt ReportingMode Resolution RightAlt RightCtl Rotate STN SWCursor SampleRate
-Xf86confdeclopt ScreenNumber ScrollLock SendCoreEvents SendDragEvents Serial ServerNumLock
-Xf86confdeclopt SetLcdClk SetMClk SetRefClk ShadowFb ShadowStatus ShowCache SleepMode
-Xf86confdeclopt SleepScan SleepTime SlowDram SlowEDODRAM StandbyTime StopBits Stretch
-Xf86confdeclopt SuspendHack SuspendTime SwapXY SyncOnGreen TV TVOutput TVOverscan TVStandard
-Xf86confdeclopt TVXPosOffset TVYPosOffset TexturedVideo Threshold Tilt TopX TopY TouchTime
-Xf86confdeclopt TrapSignals Type USB UseBIOS UseFB UseFBDev UseFlatPanel UseModeline
-Xf86confdeclopt UseROMData UseVclk1 VTInit VTSysReq VTime VideoKey Vmin XAxisMapping
-Xf86confdeclopt XLeds XVideo XaaNoCPUToScreenColorExpandFill XaaNoColor8x8PatternFillRect
-Xf86confdeclopt XaaNoColor8x8PatternFillTrap XaaNoDashedBresenhamLine XaaNoDashedTwoPointLine
-Xf86confdeclopt XaaNoImageWriteRect XaaNoMono8x8PatternFillRect XaaNoMono8x8PatternFillTrap
-Xf86confdeclopt XaaNoOffscreenPixmaps XaaNoPixmapCache XaaNoScanlineCPUToScreenColorExpandFill
-Xf86confdeclopt XaaNoScanlineImageWriteRect XaaNoScreenToScreenColorExpandFill
-Xf86confdeclopt XaaNoScreenToScreenCopy XaaNoSolidBresenhamLine XaaNoSolidFillRect
-Xf86confdeclopt XaaNoSolidFillTrap XaaNoSolidHorVertLine XaaNoSolidTwoPointLine Xinerama
-Xf86confdeclopt XkbCompat XkbDisable XkbGeometry XkbKeycodes XkbKeymap XkbLayout XkbModel
-Xf86confdeclopt XkbOptions XkbRules XkbSymbols XkbTypes XkbVariant XvBskew XvHsync XvOnCRT2
-Xf86confdeclopt XvRskew XvVsync YAxisMapping ZAxisMapping ZoomOnLCD
+
+"Xf86confdeclopt
+Xf86confdeclopt 18bitBus Above Accel AccelDFS AccelerationDenominator AccelerationNumerator AccelerationProfile AccelerationScheme AddARGBGLXVisuals
+Xf86confdeclopt AccelerationThreshold AccelFactor AccelMethod AdaptiveDeceleration AGPFastWrite AGPMode AIGLX AllowClosedownGrabs
+Xf86confdeclopt AllowDeactivateGrabs AllowEmptyInput AllowMouseOpenFail AllowNonLocalModInDev AllowNonLocalXvidtune AlwaysCore
+Xf86confdeclopt AngleOffset AreaBottomEdge AreaLeftEdge AreaRightEdge AreaTopEdge AutoAddDevices AutoEnableDevices AutoRepeat
+Xf86confdeclopt AutoServerLayout BaudRate BeamTimeout Beep Below BlankTime BlockWrite BottomEdge BottomX BottomY ButtonMapping
+Xf86confdeclopt ButtonNumber Buttons ButtonThreshold ByteSwap CacheLines Calibration ChordMiddle CircScrollDelta CircScrollTrigger
+Xf86confdeclopt CircularPad CircularScrolling ClearDTR ClearDTS ClickFinger1 ClickFinger2 ClickFinger3 ClickMode ClickTime CloneDisplay
+Xf86confdeclopt CloneHSync CloneMode CloneVRefresh CoastingSpeed ColorKey ColorTiling Composite CompositeSync ConstantDeceleration
+Xf86confdeclopt CoreKeyboard CorePointer CornerCoasting Crt2Memory CrtcNumber CrtScreen CyberShadow CyberStretch Dac6Bit DacSpeed
+Xf86confdeclopt DataBits DBE DDC DDCMode Debug DebugLevel DefaultServerLayout DeltaX DeltaY Device DeviceName DisableModInDev DevicePresence
+Xf86confdeclopt DisableVidModeExtension Display Display1400 DMAForXv DontVTSwitch DontZap DontZoom DoubleScan DozeMode DozeScan DozeTime
+Xf86confdeclopt DPMS DragLockButtons DRI DRI2 DualCount DualRefresh EarlyRasPrecharge EdgeMotionMaxSpeed EdgeMotionMaxZ
+Xf86confdeclopt EdgeMotionMinSpeed EdgeMotionMinZ EdgeMotionUseAlways Emulate3Buttons Emulate3Timeout EmulateMidButtonTime
+Xf86confdeclopt EmulateTwoFingerMinW EmulateTwoFingerMinZ EmulateWheel EmulateWheelButton EmulateWheelInertia EmulateWheelTimeout Enable
+Xf86confdeclopt EnablePageFlip EnterCount EstimateSizesAggressively EXAOptimizeMigration ExternDisp EXTMOD FastDram FastTaps
+Xf86confdeclopt FifoAggresive FifoConservative FifoModerate FingerHigh FingerLow FingerPress FireGL3000 FixPanelSize FlatPanel FlipXY
+Xf86confdeclopt FlowControl ForceCRT1 ForceCRT2Type ForceDevice ForceLegacyCRT ForcePCIMode FPClock16 FPClock24 FPClock32 FPClock8
+Xf86confdeclopt FPDither FpmVRAM FrameBufferWC FullMMIO GammaBrightness GLcore GLX GlxVisuals GrabDevice GrabEventDevice GuestMouseOff
+Xf86confdeclopt HandleSpecialKeys HistorySize HorizEdgeScroll HorizResolution HorizScrollDelta HorizTwoFingerScroll HWClocks HWCursor
+Xf86confdeclopt Ignore IgnoreABI IgnoreAbsoluteAxes IgnoreRelativeAxes InitPrimary Interlace Interlaced InternDisp InvertX InvertY InvX
+Xf86confdeclopt InvY IsolateDevice KeepShape LateRasPrecharge LBCornerButton LcdCenter LCDClock LeftAlt LeftEdge LeftOf
+Xf86confdeclopt LeftRightScrolling LeftRightScrollRepeat Linear LockedDrags LockedDragTimeout Log LTCornerButton LVDSBiosNativeMode
+Xf86confdeclopt MaxClock MaxDoubleTapTime MaximumXPosition MaximumYPosition MaxSpeed MaxTapMove MaxTapTime MaxX MaxY MGASDRAM
+Xf86confdeclopt MigrationHeuristic MinClock MinimumXPosition MinimumYPosition MinSpeed MinX MinY MMIO MMIOCache ModeDebug MonitorLayout
+Xf86confdeclopt MTTR NvAGP OffTime Origin OSMImageBuffers OverClockMem Overlay PalmDetect PalmMinWidth PalmMinZ PanelDelayCompensation
+Xf86confdeclopt PanelHeight PanelOff PanelWidth Parity PC98 PCIBurst PciRetry Pixmap PM Port Position PressDur PressPitch
+Xf86confdeclopt PressureMotionMaxFactor PressureMotionMaxZ PressureMotionMinFactor PressureMotionMinZ PressVol Primary ProbeClocks
+Xf86confdeclopt ProgramFPRegs Protocol PWMActive PWMSleep RBCornerButton RECORD ReleaseDur ReleasePitch ReopenAttempts ReportingMode
+Xf86confdeclopt Resolution RGBBits RightAlt RightCtl RightEdge RightOf Rotate RTCornerButton SampleRate ScreenNumber ScrollButtonRepeat
+Xf86confdeclopt ScrollLock SendCoreEvents SendDragEvents Serial ServerNumLock SetLcdClk SetMClk SetRefClk ShadowFb ShadowStatus
+Xf86confdeclopt SHMConfig ShowCache SingleCard SingleTapTimeout SleepMode SleepScan SleepTime SlowDram SlowEDODRAM StandbyTime STN
+Xf86confdeclopt StopBits Stretch SuspendHack SuspendTime SwapAxes SwapXY SWCursor SyncOnGreen TapAndDragGesture TapButton1 TapButton2
+Xf86confdeclopt TapButton3 TexturedVideo Threshold Tiling Tilt TopEdge TopX TopY TouchpadOff TouchTime TrackstickSpeed TrapSignals TV
+Xf86confdeclopt TVOutput TVOverscan TVStandard TVXPosOffset TVYPosOffset Type UpDownScrolling UpDownScrollRepeat USB UseBIOS
+Xf86confdeclopt UseDefaultFontPath UseFB UseFBDev UseFlatPanel UseModeline UseROMData UseSIGIO UseVclk1 VertEdgeScroll VertResolution
+Xf86confdeclopt VertScrollDelta VertTwoFingerScroll VideoKey Vmin VTime VTInit VTSysReq XaaNoColor8x8PatternFillRect
+Xf86confdeclopt XaaNoColor8x8PatternFillTrap XaaNoCPUToScreenColorExpandFill XaaNoDashedBresenhamLine XaaNoDashedTwoPointLine
+Xf86confdeclopt XaaNoImageWriteRect XaaNoMono8x8PatternFillRect XaaNoMono8x8PatternFillTrap XaaNoOffscreenPixmaps XaaNoPixmapCache
+Xf86confdeclopt XaaNoScanlineCPUToScreenColorExpandFill XaaNoScanlineImageWriteRect XaaNoScreenToScreenColorExpandFill
+Xf86confdeclopt XaaNoScreenToScreenCopy XaaNoSolidBresenhamLine XaaNoSolidFillRect XaaNoSolidFillTrap XaaNoSolidHorVertLine
+Xf86confdeclopt XaaNoSolidTwoPointLine XAxisMapping Xinerama XkbCompat XkbDisable XkbGeometry XkbKeycodes XkbKeymap XkbLayout XkbModel
+Xf86confdeclopt XkbOptions XkbRules XkbSymbols XkbTypes XkbVariant XLeds XvBskew XvHsync XVideo XvOnCRT2 XvRskew XvVsync YAxisMapping
+Xf86confdeclopt ZAxisMapping ZoomOnLCD
+
+
+
+Xf86confdeclopt No18bitBus NoAbove NoAccel NoAccelDFS NoAccelerationDenominator NoAccelerationNumerator NoAccelerationProfile
+Xf86confdeclopt NoAccelerationScheme NoAccelerationThreshold NoAccelFactor NoAccelMethod NoAdaptiveDeceleration NoAGPFastWrite NoAGPMode
+Xf86confdeclopt NoAIGLX NoAllowClosedownGrabs NoAllowDeactivateGrabs NoAllowEmptyInput NoAllowMouseOpenFail NoAllowNonLocalModInDev
+Xf86confdeclopt NoAllowNonLocalXvidtune NoAlwaysCore NoAngleOffset NoAreaBottomEdge NoAreaLeftEdge NoAreaRightEdge NoAreaTopEdge
+Xf86confdeclopt NoAutoAddDevices NoAutoEnableDevices NoAutoRepeat NoAutoServerLayout NoBaudRate NoBeamTimeout NoBeep NoBelow NoBlankTime
+Xf86confdeclopt NoBlockWrite NoBottomEdge NoBottomX NoBottomY NoButtonMapping NoButtonNumber NoButtons NoButtonThreshold NoByteSwap
+Xf86confdeclopt NoCacheLines NoCalibration NoChordMiddle NoCircScrollDelta NoCircScrollTrigger NoCircularPad NoCircularScrolling
+Xf86confdeclopt NoClearDTR NoClearDTS NoClickFinger1 NoClickFinger2 NoClickFinger3 NoClickMode NoClickTime NoCloneDisplay NoCloneHSync
+Xf86confdeclopt NoCloneMode NoCloneVRefresh NoCoastingSpeed NoColorKey NoColorTiling NoComposite NoCompositeSync NoCompression
+Xf86confdeclopt NoConstantDeceleration NoCoreKeyboard NoCorePointer NoCornerCoasting NoCrt2Memory NoCrtcNumber NoCrtScreen NoCyberShadow
+Xf86confdeclopt NoCyberStretch NoDac6Bit NoDacSpeed NoDataBits NoDBE NoDCC NoDDC NoDDCMode NoDebug NoDebugLevel NoDefaultServerLayout
+Xf86confdeclopt NoDeltaX NoDeltaY NoDevice NoDeviceName NoDisableModInDev NoDisableVidModeExtension NoDisplay NoDisplay1400 NoDMAForXv
+Xf86confdeclopt NoDontVTSwitch NoDontZap NoDontZoom NoDoubleScan NoDozeMode NoDozeScan NoDozeTime NoDPMS NoDragLockButtons NoDRI NoDRI2
+Xf86confdeclopt NoDualCount NoDualRefresh NoEarlyRasPrecharge NoEdgeMotionMaxSpeed NoEdgeMotionMaxZ NoEdgeMotionMinSpeed
+Xf86confdeclopt NoEdgeMotionMinZ NoEdgeMotionUseAlways NoEmulate3Buttons NoEmulate3Timeout NoEmulateMidButtonTime NoEmulateTwoFingerMinW
+Xf86confdeclopt NoEmulateTwoFingerMinZ NoEmulateWheel NoEmulateWheelButton NoEmulateWheelInertia NoEmulateWheelTimeout NoEnable
+Xf86confdeclopt NoEnablePageFlip NoEnterCount NoEstimateSizesAggressively NoEXAOptimizeMigration NoExternDisp NoEXTMOD NoFastDram
+Xf86confdeclopt NoFastTaps NoFifoAggresive NoFifoConservative NoFifoModerate NoFingerHigh NoFingerLow NoFingerPress NoFireGL3000
+Xf86confdeclopt NoFixPanelSize NoFlatPanel NoFlipXY NoFlowControl NoForceCRT1 NoForceCRT2Type NoForceDevice NoForceLegacyCRT
+Xf86confdeclopt NoForcePCIMode NoFPClock16 NoFPClock24 NoFPClock32 NoFPClock8 NoFPDither NoFpmVRAM NoFrameBufferWC NoFullMMIO
+Xf86confdeclopt NoGammaBrightness NoGLcore NoGLX NoGlxVisuals NoGrabDevice NoGrabEventDevice NoGuestMouseOff NoHal NoHandleSpecialKeys
+Xf86confdeclopt NoHistorySize NoHorizEdgeScroll NoHorizResolution NoHorizScrollDelta NoHorizTwoFingerScroll NoHWClocks NoHWCursor
+Xf86confdeclopt NoIgnore NoIgnoreABI NoIgnoreAbsoluteAxes NoIgnoreRelativeAxes NoInitPrimary NoInt10 NoInterlace NoInterlaced
+Xf86confdeclopt NoInternDisp NoInvertX NoInvertY NoInvX NoInvY NoIsolateDevice NoKeepShape NoLateRasPrecharge NoLBCornerButton
+Xf86confdeclopt NoLcdCenter NoLCDClock NoLeftAlt NoLeftEdge NoLeftOf NoLeftRightScrolling NoLeftRightScrollRepeat NoLinear NoLockedDrags
+Xf86confdeclopt NoLockedDragTimeout NoLog NoLTCornerButton NoLVDSBiosNativeMode NoMaxClock NoMaxDoubleTapTime NoMaximumXPosition
+Xf86confdeclopt NoMaximumYPosition NoMaxSpeed NoMaxTapMove NoMaxTapTime NoMaxX NoMaxY NoMGASDRAM NoMigrationHeuristic NoMinClock
+Xf86confdeclopt NoMinimumXPosition NoMinimumYPosition NoMinSpeed NoMinX NoMinY NoMMIO NoMMIOCache NoModeDebug NoMonitorLayout NoMTRR
+Xf86confdeclopt NoMTTR NoNvAGP NoOffTime NoOrigin NoOSMImageBuffers NoOverClockMem NoOverlay NoPalmDetect NoPalmMinWidth NoPalmMinZ
+Xf86confdeclopt NoPanelDelayCompensation NoPanelHeight NoPanelOff NoPanelWidth NoParity NoPC98 NoPciBurst NoPciRetry NoPixmap NoPM
+Xf86confdeclopt NoPort NoPosition NoPressDur NoPressPitch NoPressureMotionMaxFactor NoPressureMotionMaxZ NoPressureMotionMinFactor
+Xf86confdeclopt NoPressureMotionMinZ NoPressVol NoPrimary NoProbeClock NoProbeClocks NoProgramFPRegs NoProtocol NoPWMActive NoPWMSleep
+Xf86confdeclopt NoRBCornerButton NoRECORD NoReleaseDur NoReleasePitch NoReopenAttempts NoReportingMode NoResolution NoRGBBits NoRightAlt
+Xf86confdeclopt NoRightCtl NoRightEdge NoRightOf NoRotate NoRTCornerButton NoSampleRate NoScreenNumber NoScrollButtonRepeat NoScrollLock
+Xf86confdeclopt NoSendCoreEvents NoSendDragEvents NoSerial NoServerNumLock NoSetLcdClk NoSetMClk NoSetRefClk NoShadowFb NoShadowStatus
+Xf86confdeclopt NoSHMConfig NoShowCache NoSingleCard NoSingleTapTimeout NoSleepMode NoSleepScan NoSleepTime NoSlowDram NoSlowEDODRAM
+Xf86confdeclopt NoStandbyTime NoSTN NoStopBits NoStretch NoSuspendHack NoSuspendTime NoSwapAxes NoSwapXY NoSWCursor NoSyncOnGreen
+Xf86confdeclopt NoTapAndDragGesture NoTapButton1 NoTapButton2 NoTapButton3 NoTexturedVideo NoThreshold NoTiling NoTilt NoTopEdge NoTopX
+Xf86confdeclopt NoTopY NoTouchpadOff NoTouchTime NoTrackstickSpeed NoTrapSignals NoTV NoTVOutput NoTVOverscan NoTVStandard
+Xf86confdeclopt NoTVXPosOffset NoTVYPosOffset NoType NoUpDownScrolling NoUpDownScrollRepeat NoUSB NoUseBIOS NoUseDefaultFontPath NoUseFB
+Xf86confdeclopt NoUseFBDev NoUseFlatPanel NoUseModeline NoUseROMData NoUseSIGIO NoUseVclk1 NoVertEdgeScroll NoVertResolution
+Xf86confdeclopt NoVertScrollDelta NoVertTwoFingerScroll NoVideoKey NoVmin NoVTime NoVTInit NoVTSysReq NoXaaNoColor8x8PatternFillRect
+Xf86confdeclopt NoXaaNoColor8x8PatternFillTrap NoXaaNoCPUToScreenColorExpandFill NoXaaNoDashedBresenhamLine NoXaaNoDashedTwoPointLine
+Xf86confdeclopt NoXaaNoImageWriteRect NoXaaNoMono8x8PatternFillRect NoXaaNoMono8x8PatternFillTrap NoXaaNoOffscreenPixmaps
+Xf86confdeclopt NoXaaNoPixmapCache NoXaaNoScanlineCPUToScreenColorExpandFill NoXaaNoScanlineImageWriteRect
+Xf86confdeclopt NoXaaNoScreenToScreenColorExpandFill NoXaaNoScreenToScreenCopy NoXaaNoSolidBresenhamLine NoXaaNoSolidFillRect
+Xf86confdeclopt NoXaaNoSolidFillTrap NoXaaNoSolidHorVertLine NoXaaNoSolidTwoPointLine NoXAxisMapping NoXinerama NoXkbCompat NoXkbDisable
+Xf86confdeclopt NoXkbGeometry NoXkbKeycodes NoXkbKeymap NoXkbLayout NoXkbModel NoXkbOptions NoXkbRules NoXkbSymbols NoXkbTypes
+Xf86confdeclopt NoXkbVariant NoXLeds NoXvBskew NoXvHsync NoXVideo NoXvOnCRT2 NoXvRskew NoXvVsync NoYAxisMapping NoZAxisMapping
+Xf86confdeclopt NoZoomOnLCD
delcommand Xf86confdeclopt
" Keywords
-syn keyword xf86confKeyword Device Driver FontPath Group Identifier Load ModelName ModulePath Monitor RGBPath VendorName VideoAdaptor Visual nextgroup=xf86confComment,xf86confString skipwhite
-syn keyword xf86confKeyword BiosBase Black BoardName BusID ChipID ChipRev Chipset nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword ClockChip Clocks DacSpeed DefaultDepth DefaultFbBpp nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword DefaultColorDepth nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword Depth DisplaySize DotClock FbBpp Flags Gamma HorizSync nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword Hskew HTimings InputDevice IOBase MemBase Mode nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword Modes Ramdac Screen TextClockFreq UseModes VendorName nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword VertRefresh VideoRam ViewPort Virtual VScan VTimings nextgroup=xf86confComment,xf86confValue
-syn keyword xf86confKeyword Weight White nextgroup=xf86confComment,xf86confValue
+syn keyword xf86confKeyword Device Driver FontPath Group Identifier Load MatchDevicePath nextgroup=xf86confComment,xf86confString skipwhite
+syn keyword xf86confKeyword MatchIsJoystick MatchIsKeyboard MatchIsPointer MatchIsTablet nextgroup=xf86confComment,xf86confString skipwhite
+syn keyword xf86confKeyword MatchIsTouchpad MatchIsTouchscreen MatchProduct MatchTag nextgroup=xf86confComment,xf86confString skipwhite
+syn keyword xf86confKeyword MatchVendor ModelName ModulePath Monitor RGBPath VendorName nextgroup=xf86confComment,xf86confString skipwhite
+syn keyword xf86confKeyword VideoAdaptor Visual nextgroup=xf86confComment,xf86confString skipwhite
+
+syn keyword xf86confKeyword BiosBase Black BoardName BusID ChipID ChipRev Chipset ClockChip Clocks nextgroup=xf86confComment,xf86confValue
+syn keyword xf86confKeyword DacSpeed DefaultColorDepth DefaultDepth DefaultFbBpp Depth DisplaySize nextgroup=xf86confComment,xf86confValue
+syn keyword xf86confKeyword DotClock FbBpp Flags Gamma HorizSync Hskew HTimings InputDevice IOBase nextgroup=xf86confComment,xf86confValue
+syn keyword xf86confKeyword MemBase Mode Modes Ramdac Screen TextClockFreq UseModes VendorName nextgroup=xf86confComment,xf86confValue
+syn keyword xf86confKeyword VertRefresh VideoRam ViewPort Virtual VScan VTimings Weight White nextgroup=xf86confComment,xf86confValue
+
syn keyword xf86confModeLine ModeLine nextgroup=xf86confComment,xf86confModeLineValue skipwhite skipnl
" Constants
@@ -165,7 +216,7 @@
" Synchronization
if b:xf86conf_xfree86_version >= 4
- 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\)\""
+ syn sync match xf86confSyncSection grouphere xf86confSection "^\s*Section\s\+\"\(Files\|Server[_ ]*Flags\|Input[_ ]*Device\|Device\|Input[_ ]*Class\|Video[_ ]*Adaptor\|Server[_ ]*Layout\|DRI\|Extensions\|Vendor\|Keyboard\|Pointer\)\""
syn sync match xf86confSyncSectionModule grouphere xf86confSectionModule "^\s*Section\s\+\"Module\""
syn sync match xf86confSyncSectionModes groupthere xf86confSectionModes "^\s*Section\s\+\"Modes\""
else