Adds control over annotation characters

This commit is contained in:
Eric Amodio
2017-02-08 12:18:34 -05:00
parent e1cf928992
commit 62c5094b06
4 changed files with 47 additions and 8 deletions

View File

@@ -16,6 +16,12 @@ export interface IBlameConfig {
date: 'off' | 'relative' | 'absolute';
message: boolean;
activeLine: 'off' | 'inline' | 'hover' | 'both';
characters: {
ellipse: string;
indent: string;
padding: string;
separator: string;
}
};
}