Skip to content

Commit

Permalink
! Updated readme
Browse files Browse the repository at this point in the history
! Used ? for anonymous type in Super Quick Info
  • Loading branch information
wmjordan committed Mar 21, 2018
1 parent eb8b984 commit 1d4a9f7
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Codist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.6.0.0")]
[assembly: AssemblyFileVersion("2.6.0.689")]
[assembly: AssemblyFileVersion("2.6.0.692")]
2 changes: 1 addition & 1 deletion Codist/Views/CSharpQuickInfoSourceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ static TextBlock ToUIText(TextBlock block, ImmutableArray<SymbolDisplayPart> par
foreach (var part in parts) {
switch (part.Kind) {
case SymbolDisplayPartKind.ClassName:
block.AddText(part.Symbol.Name, argIndex == Int32.MinValue, false, _ClassBrush);
block.AddText((part.Symbol as INamedTypeSymbol).IsAnonymousType ? "?" : part.Symbol.Name, argIndex == Int32.MinValue, false, _ClassBrush);
break;
case SymbolDisplayPartKind.EnumName:
block.AddText(part.Symbol.Name, argIndex == Int32.MinValue, false, _EnumBrush);
Expand Down
2 changes: 1 addition & 1 deletion Codist/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="2.6.0.686" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="2.6.0.692" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<Description xml:space="preserve">A plugin which enhances coding experience with advanced syntax highlighting and scrollbar marking.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
## Advanced C# syntax highlight
* The advanced syntax highlight function highlight every aspect of C# language elements with various styles and font settings, changing font style sizes, changing background and foreground colors, making text semitransparent.

Initially Codist makes few changes to the syntax highlight.
**NOTE**: To quickly get started with advanced syntax highlight, click the *Load...* button in the *options* dialog, select *Light theme* or *Dark theme* from the pop-up menu to see them in effect. Don't forget to click the *OK* button to confirm the change.

To quickly get started with advanced syntax highlight, load the *Light Codist.json* (for light color themes) or *Dark Codist.json* (for dark color themes) file with the *Load Configs* button in the *options* dialog to see them in effect.
![Load Theme](doc/load-theme.png)

The following screenshots of the `TestPage.cs` file in the source code project demonstrates possible syntax highlight effects.

Expand Down
Binary file modified doc/csharp-options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/general-options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/load-theme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1d4a9f7

Please sign in to comment.