Renames *.advanced.codeLens.debug to *.codeLens.debug

Renames *.advanced.debug to *.debug
Renames *.output.level to *.outputLevel
This commit is contained in:
Eric Amodio
2017-04-22 09:27:30 -04:00
parent bb59f2899a
commit 6af753c0ae
4 changed files with 29 additions and 33 deletions

View File

@@ -64,6 +64,7 @@ export interface ICodeLensLanguageLocation {
}
export interface ICodeLensesConfig {
debug: boolean;
visibility: CodeLensVisibility;
location: CodeLensLocation;
locationCustomSymbols: string[];
@@ -99,18 +100,11 @@ export interface IAdvancedConfig {
maxLines: number;
}
};
codeLens: {
debug: boolean;
};
debug: boolean;
git: string;
gitignore: {
enabled: boolean;
};
maxQuickHistory: number;
output: {
level: OutputLevel;
};
quickPick: {
closeOnFocusOut: boolean;
};
@@ -120,6 +114,8 @@ export interface IAdvancedConfig {
}
export interface IConfig {
debug: boolean;
outputLevel: OutputLevel;
blame: IBlameConfig;
codeLens: ICodeLensesConfig;
statusBar: IStatusBarConfig;