mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-08 03:06:29 +08:00
16 lines
488 B
C#
16 lines
488 B
C#
using ICSharpCode.AvalonEdit.Rendering;
|
|
|
|
namespace QuickLook.Plugin.TextViewer.Themes.HighlightingDefinitions.Dark;
|
|
|
|
/// <summary>
|
|
/// Rainbow TSV Highlighting Definition
|
|
/// </summary>
|
|
public class TSVHighlightingDefinition : DarkHighlightingDefinition
|
|
{
|
|
public override string Name => "TSV";
|
|
|
|
public override string Extension => ".tsv";
|
|
|
|
public override DocumentColorizingTransformer[] LineTransformers { get; } = [new CSVHighlightingDefinition.RainbowTransformer('\t')];
|
|
}
|