mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-28 09:35:41 -05:00
Refactors git modules - unify under gitProvider
Adds advanced setting to enable blame cache Fixes codelens settings to actually work
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
'use strict'
|
||||
|
||||
export type BlameAnnotationStyle = 'compact' | 'expanded';
|
||||
export const BlameAnnotationStyle = {
|
||||
Compact: 'compact' as BlameAnnotationStyle,
|
||||
@@ -29,4 +31,16 @@ export interface ICodeLensConfig {
|
||||
export interface ICodeLensesConfig {
|
||||
recentChange: ICodeLensConfig;
|
||||
authors: ICodeLensConfig;
|
||||
}
|
||||
|
||||
export interface IAdvancedConfig {
|
||||
caching: {
|
||||
enabled: boolean
|
||||
}
|
||||
}
|
||||
|
||||
export interface IConfig {
|
||||
blame: IBlameConfig,
|
||||
codeLens: ICodeLensesConfig,
|
||||
advanced: IAdvancedConfig
|
||||
}
|
||||
Reference in New Issue
Block a user