├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── docs └── sections │ └── indicators.md └── src ├── ScintillaNET.Signed.nuspec ├── ScintillaNET.nuspec ├── ScintillaNET.sln ├── ScintillaNET.snk └── ScintillaNET ├── Annotation.cs ├── AutoCSelectionEventArgs.cs ├── AutomaticFold.cs ├── BeforeModificationEventArgs.cs ├── CaretStyle.cs ├── ChangeAnnotationEventArgs.cs ├── CharAddedEventArgs.cs ├── Command.cs ├── CopyFormat.cs ├── Document.cs ├── DoubleClickEventArgs.cs ├── DwellEventArgs.cs ├── EdgeMode.cs ├── Eol.cs ├── FlagsEnumConverter.cs ├── FoldAction.cs ├── FoldDisplayText.cs ├── FoldFlags.cs ├── FoldLevelFlags.cs ├── FontQuality.cs ├── GapBuffer.cs ├── Helpers.cs ├── HotspotClickEventArgs.cs ├── ILoader.cs ├── IdleStyling.cs ├── IndentView.cs ├── Indicator.cs ├── IndicatorClickEventArgs.cs ├── IndicatorCollection.cs ├── IndicatorFlags.cs ├── IndicatorReleaseEventArgs.cs ├── IndicatorStyle.cs ├── InsertCheckEventArgs.cs ├── Lexer.cs ├── Line.cs ├── LineCollection.cs ├── LineEndType.cs ├── ListCompletionMethod.cs ├── Loader.cs ├── Margin.cs ├── MarginClickEventArgs.cs ├── MarginCollection.cs ├── MarginCursor.cs ├── MarginOptions.cs ├── MarginType.cs ├── Marker.cs ├── MarkerCollection.cs ├── MarkerHandle.cs ├── MarkerSymbol.cs ├── ModificationEventArgs.cs ├── ModificationSource.cs ├── MultiPaste.cs ├── NativeMemoryStream.cs ├── NativeMethods.cs ├── NeedShownEventArgs.cs ├── Order.cs ├── Phases.cs ├── PopupMode.cs ├── ProjectionEqualityComparer.cs ├── Properties └── AssemblyInfo.cs ├── PropertyType.cs ├── SCNotificationEventArgs.cs ├── Scintilla.cs ├── ScintillaNET.csproj ├── ScintillaReader.cs ├── SearchFlags.cs ├── Selection.cs ├── SelectionCollection.cs ├── Status.cs ├── Style.cs ├── StyleCase.cs ├── StyleCollection.cs ├── StyleNeededEventArgs.cs ├── TabDrawMode.cs ├── Technology.cs ├── Tuple.cs ├── UpdateChange.cs ├── UpdateUIEventArgs.cs ├── VirtualSpace.cs ├── WhitespaceMode.cs ├── WrapIndentMode.cs ├── WrapMode.cs ├── WrapVisualFlagLocation.cs ├── WrapVisualFlags.cs ├── x64 ├── License.txt ├── SciLexer.dll ├── SciLexer.dll.gz ├── SciLexer.exp ├── SciLexer.lib ├── SciLexer.pdb └── version.txt └── x86 ├── License.txt ├── SciLexer.dll ├── SciLexer.dll.gz ├── SciLexer.exp ├── SciLexer.lib ├── SciLexer.pdb └── version.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/README.md -------------------------------------------------------------------------------- /docs/sections/indicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/docs/sections/indicators.md -------------------------------------------------------------------------------- /src/ScintillaNET.Signed.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET.Signed.nuspec -------------------------------------------------------------------------------- /src/ScintillaNET.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET.nuspec -------------------------------------------------------------------------------- /src/ScintillaNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET.sln -------------------------------------------------------------------------------- /src/ScintillaNET.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET.snk -------------------------------------------------------------------------------- /src/ScintillaNET/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Annotation.cs -------------------------------------------------------------------------------- /src/ScintillaNET/AutoCSelectionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/AutoCSelectionEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/AutomaticFold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/AutomaticFold.cs -------------------------------------------------------------------------------- /src/ScintillaNET/BeforeModificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/BeforeModificationEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/CaretStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/CaretStyle.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ChangeAnnotationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ChangeAnnotationEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/CharAddedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/CharAddedEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Command.cs -------------------------------------------------------------------------------- /src/ScintillaNET/CopyFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/CopyFormat.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Document.cs -------------------------------------------------------------------------------- /src/ScintillaNET/DoubleClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/DoubleClickEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/DwellEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/DwellEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/EdgeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/EdgeMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Eol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Eol.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FlagsEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FlagsEnumConverter.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FoldAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FoldAction.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FoldDisplayText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FoldDisplayText.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FoldFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FoldFlags.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FoldLevelFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FoldLevelFlags.cs -------------------------------------------------------------------------------- /src/ScintillaNET/FontQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/FontQuality.cs -------------------------------------------------------------------------------- /src/ScintillaNET/GapBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/GapBuffer.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Helpers.cs -------------------------------------------------------------------------------- /src/ScintillaNET/HotspotClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/HotspotClickEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ILoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ILoader.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IdleStyling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IdleStyling.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndentView.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Indicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Indicator.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndicatorClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndicatorClickEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndicatorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndicatorCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndicatorFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndicatorFlags.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndicatorReleaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndicatorReleaseEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/IndicatorStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/IndicatorStyle.cs -------------------------------------------------------------------------------- /src/ScintillaNET/InsertCheckEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/InsertCheckEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Lexer.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Line.cs -------------------------------------------------------------------------------- /src/ScintillaNET/LineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/LineCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/LineEndType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/LineEndType.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ListCompletionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ListCompletionMethod.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Loader.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Margin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Margin.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarginClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarginClickEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarginCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarginCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarginCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarginCursor.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarginOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarginOptions.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarginType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarginType.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Marker.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarkerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarkerCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarkerHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarkerHandle.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MarkerSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MarkerSymbol.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ModificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ModificationEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ModificationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ModificationSource.cs -------------------------------------------------------------------------------- /src/ScintillaNET/MultiPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/MultiPaste.cs -------------------------------------------------------------------------------- /src/ScintillaNET/NativeMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/NativeMemoryStream.cs -------------------------------------------------------------------------------- /src/ScintillaNET/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/NativeMethods.cs -------------------------------------------------------------------------------- /src/ScintillaNET/NeedShownEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/NeedShownEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Order.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Phases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Phases.cs -------------------------------------------------------------------------------- /src/ScintillaNET/PopupMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/PopupMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ProjectionEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ProjectionEqualityComparer.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ScintillaNET/PropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/PropertyType.cs -------------------------------------------------------------------------------- /src/ScintillaNET/SCNotificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/SCNotificationEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Scintilla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Scintilla.cs -------------------------------------------------------------------------------- /src/ScintillaNET/ScintillaNET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ScintillaNET.csproj -------------------------------------------------------------------------------- /src/ScintillaNET/ScintillaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/ScintillaReader.cs -------------------------------------------------------------------------------- /src/ScintillaNET/SearchFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/SearchFlags.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Selection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/SelectionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/SelectionCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Status.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Style.cs -------------------------------------------------------------------------------- /src/ScintillaNET/StyleCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/StyleCase.cs -------------------------------------------------------------------------------- /src/ScintillaNET/StyleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/StyleCollection.cs -------------------------------------------------------------------------------- /src/ScintillaNET/StyleNeededEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/StyleNeededEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/TabDrawMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/TabDrawMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Technology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Technology.cs -------------------------------------------------------------------------------- /src/ScintillaNET/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/Tuple.cs -------------------------------------------------------------------------------- /src/ScintillaNET/UpdateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/UpdateChange.cs -------------------------------------------------------------------------------- /src/ScintillaNET/UpdateUIEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/UpdateUIEventArgs.cs -------------------------------------------------------------------------------- /src/ScintillaNET/VirtualSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/VirtualSpace.cs -------------------------------------------------------------------------------- /src/ScintillaNET/WhitespaceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/WhitespaceMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/WrapIndentMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/WrapIndentMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/WrapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/WrapMode.cs -------------------------------------------------------------------------------- /src/ScintillaNET/WrapVisualFlagLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/WrapVisualFlagLocation.cs -------------------------------------------------------------------------------- /src/ScintillaNET/WrapVisualFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/WrapVisualFlags.cs -------------------------------------------------------------------------------- /src/ScintillaNET/x64/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/License.txt -------------------------------------------------------------------------------- /src/ScintillaNET/x64/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/SciLexer.dll -------------------------------------------------------------------------------- /src/ScintillaNET/x64/SciLexer.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/SciLexer.dll.gz -------------------------------------------------------------------------------- /src/ScintillaNET/x64/SciLexer.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/SciLexer.exp -------------------------------------------------------------------------------- /src/ScintillaNET/x64/SciLexer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/SciLexer.lib -------------------------------------------------------------------------------- /src/ScintillaNET/x64/SciLexer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x64/SciLexer.pdb -------------------------------------------------------------------------------- /src/ScintillaNET/x64/version.txt: -------------------------------------------------------------------------------- 1 | 412 2 | -------------------------------------------------------------------------------- /src/ScintillaNET/x86/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/License.txt -------------------------------------------------------------------------------- /src/ScintillaNET/x86/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/SciLexer.dll -------------------------------------------------------------------------------- /src/ScintillaNET/x86/SciLexer.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/SciLexer.dll.gz -------------------------------------------------------------------------------- /src/ScintillaNET/x86/SciLexer.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/SciLexer.exp -------------------------------------------------------------------------------- /src/ScintillaNET/x86/SciLexer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/SciLexer.lib -------------------------------------------------------------------------------- /src/ScintillaNET/x86/SciLexer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobslusser/ScintillaNET/HEAD/src/ScintillaNET/x86/SciLexer.pdb -------------------------------------------------------------------------------- /src/ScintillaNET/x86/version.txt: -------------------------------------------------------------------------------- 1 | 412 2 | --------------------------------------------------------------------------------