mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-09 09:42:41 -05:00
Adds gitlens.diffWithPrevious command to the explore context menu
Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting Removes all debug logging, unless the `gitlens.advanced.output.debug` settings it on
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
'use strict';
|
||||
import {Commands} from './constants';
|
||||
import { Commands } from './constants';
|
||||
|
||||
export type BlameAnnotationStyle = 'compact' | 'expanded';
|
||||
export const BlameAnnotationStyle = {
|
||||
@@ -66,9 +66,20 @@ export interface IStatusBarConfig {
|
||||
command: StatusBarCommand;
|
||||
}
|
||||
|
||||
export type OutputLevel = 'silent' | 'errors' | 'verbose';
|
||||
export const OutputLevel = {
|
||||
Silent: 'silent' as OutputLevel,
|
||||
Errors: 'errors' as OutputLevel,
|
||||
Verbose: 'verbose' as OutputLevel
|
||||
};
|
||||
|
||||
export interface IAdvancedConfig {
|
||||
caching: {
|
||||
enabled: boolean
|
||||
enabled: boolean;
|
||||
};
|
||||
output: {
|
||||
debug: boolean;
|
||||
level: OutputLevel;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user