mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-29 09:35:41 -05:00
Adds new trailing annotation mode
Adds message setting to annotations Adds active line annotations & setting
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
'use strict';
|
||||
import { Commands } from './constants';
|
||||
|
||||
export type BlameAnnotationStyle = 'compact' | 'expanded';
|
||||
export type BlameAnnotationStyle = 'compact' | 'expanded' | 'trailing';
|
||||
export const BlameAnnotationStyle = {
|
||||
Compact: 'compact' as BlameAnnotationStyle,
|
||||
Expanded: 'expanded' as BlameAnnotationStyle
|
||||
Expanded: 'expanded' as BlameAnnotationStyle,
|
||||
Trailing: 'trailing' as BlameAnnotationStyle
|
||||
};
|
||||
|
||||
export interface IBlameConfig {
|
||||
@@ -12,7 +13,11 @@ export interface IBlameConfig {
|
||||
style: BlameAnnotationStyle;
|
||||
sha: boolean;
|
||||
author: boolean;
|
||||
date: boolean;
|
||||
date: 'off' | 'relative' | 'absolute';
|
||||
message: boolean;
|
||||
activeLine: {
|
||||
enabled: boolean;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user