mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-21 09:45:37 -05:00
Fixes #39 - adds date options for status bar blame
Adds data formatting option to blame annotations Preps v2.8.2
This commit is contained in:
@@ -16,6 +16,7 @@ export interface IBlameConfig {
|
||||
sha: boolean;
|
||||
author: boolean;
|
||||
date: 'off' | 'relative' | 'absolute';
|
||||
dateFormat: string;
|
||||
message: boolean;
|
||||
activeLine: 'off' | 'inline' | 'hover' | 'both';
|
||||
characters: {
|
||||
@@ -89,6 +90,8 @@ export const StatusBarCommand = {
|
||||
export interface IStatusBarConfig {
|
||||
enabled: boolean;
|
||||
command: StatusBarCommand;
|
||||
date: 'off' | 'relative' | 'absolute';
|
||||
dateFormat: string;
|
||||
}
|
||||
|
||||
export interface IAdvancedConfig {
|
||||
|
||||
Reference in New Issue
Block a user