mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-17 09:45:36 -05:00
Addresses #57 - adds warning if no diff.tool
This commit is contained in:
@@ -510,6 +510,12 @@ export class GitService extends Disposable {
|
||||
return Git.normalizePath(fileName).toLowerCase();
|
||||
}
|
||||
|
||||
async getConfig(key: string, repoPath?: string): Promise<string> {
|
||||
Logger.log(`getConfig('${key}', '${repoPath}')`);
|
||||
|
||||
return await Git.config_get(key, repoPath);
|
||||
}
|
||||
|
||||
getGitUriForFile(fileName: string) {
|
||||
const cacheKey = this.getCacheEntryKey(fileName);
|
||||
const entry = this._uriCache.get(cacheKey);
|
||||
|
||||
Reference in New Issue
Block a user