Skip to content

Commit accdc1d

Browse files
committed
Added structure for syntax highlighting
1 parent 7e2a0b2 commit accdc1d

13 files changed

+45
-0
lines changed

VB/App_Data/ScriptHelp.sdf

0 Bytes
Binary file not shown.

VB/ScriptHelp.vbproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,17 @@
246246
<Compile Include="Scripts\Form.vb" />
247247
<Compile Include="Scripts\Formula.vb" />
248248
<Compile Include="Scripts\Ribbon.vb" />
249+
<Compile Include="Scripts\Syntax\CaseInsensitivePatternDefinition.vb" />
250+
<Compile Include="Scripts\Syntax\ColorUtils.vb" />
251+
<Compile Include="Scripts\Syntax\Expression.vb" />
252+
<Compile Include="Scripts\Syntax\ExpressionType.vb" />
253+
<Compile Include="Scripts\Syntax\PatternDefinition.vb" />
254+
<Compile Include="Scripts\Syntax\PatternStyleMap.vb" />
255+
<Compile Include="Scripts\Syntax\StringExtensions.vb" />
256+
<Compile Include="Scripts\Syntax\StyleGroupPair.vb" />
257+
<Compile Include="Scripts\Syntax\SyntaxHighlighter.vb" />
258+
<Compile Include="Scripts\Syntax\SyntaxStyle.vb" />
259+
<Compile Include="Scripts\Syntax\TextBoxBaseExtensions.vb" />
249260
<Compile Include="TaskPane\GraphData.Designer.vb">
250261
<DependentUpon>GraphData.vb</DependentUpon>
251262
</Compile>
@@ -367,6 +378,7 @@
367378
<ItemGroup>
368379
<Service Include="{94E38DFF-614B-4CBD-B67C-F211BB35CE8B}" />
369380
</ItemGroup>
381+
<ItemGroup />
370382
<PropertyGroup>
371383
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
372384
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class CaseInsensitivePatternDefinition
2+
3+
End Class

VB/Scripts/Syntax/ColorUtils.vb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class ColorUtils
2+
3+
End Class

VB/Scripts/Syntax/Expression.vb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class Expression
2+
3+
End Class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class ExpressionType
2+
3+
End Class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class PatternDefinition
2+
3+
End Class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class PatternStyleMap
2+
3+
End Class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class StringExtensions
2+
3+
End Class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class StyleGroupPair
2+
3+
End Class

0 commit comments

Comments
 (0)