Adds control over the active line annotation colors

This commit is contained in:
Eric Amodio
2017-04-12 17:06:39 -04:00
parent 04a6574f16
commit 0875cc12d5
4 changed files with 30 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ export interface IBlameConfig {
dateFormat: string;
message: boolean;
activeLine: 'off' | 'inline' | 'hover' | 'both';
activeLineDarkColor: string;
activeLineLightColor: string;
};
}