浏览代码

Defaults compact to false in getFormattedDiffStatus

main
Eric Amodio 6 年前
父节点
当前提交
54ecf456d8
共有 3 个文件被更改,包括 8 次插入4 次删除
  1. +1
    -1
      src/git/models/logCommit.ts
  2. +1
    -1
      src/git/models/status.ts
  3. +6
    -2
      src/quickpicks/commonQuickPicks.ts

+ 1
- 1
src/git/models/logCommit.ts 查看文件

@ -107,7 +107,7 @@ export class GitLogCommit extends GitCommit {
const { added, changed, deleted } = this.getDiffStatus();
if (added === 0 && changed === 0 && deleted === 0) return options.empty || '';
options = { compact: true, empty: '', prefix: '', separator: ' ', suffix: '', ...options };
options = { empty: '', prefix: '', separator: ' ', suffix: '', ...options };
if (options.expand) {
let status = '';
if (added) {

+ 1
- 1
src/git/models/status.ts 查看文件

@ -81,7 +81,7 @@ export class GitStatus {
const { added, changed, deleted } = this.getDiffStatus();
if (added === 0 && changed === 0 && deleted === 0) return options.empty || '';
options = { compact: true, empty: '', prefix: '', separator: ' ', suffix: '', ...options };
options = { empty: '', prefix: '', separator: ' ', suffix: '', ...options };
if (options.expand) {
let status = '';
if (added) {

+ 6
- 2
src/quickpicks/commonQuickPicks.ts 查看文件

@ -116,13 +116,17 @@ export class CommitQuickPickItem implements QuickPickItem {
GlyphChars.Dot,
1,
1
)} ${commit.formattedDate} ${Strings.pad(GlyphChars.Dot, 1, 1)} ${commit.getFormattedDiffStatus()}`;
)} ${commit.formattedDate} ${Strings.pad(GlyphChars.Dot, 1, 1)} ${commit.getFormattedDiffStatus({
compact: true
})}`;
}
else {
this.label = message;
this.description = `${Strings.pad('$(git-commit)', 1, 1)} ${commit.shortSha}`;
this.detail = `${GlyphChars.Space} ${commit.author}, ${commit.formattedDate}${
commit.isFile ? '' : ` ${Strings.pad(GlyphChars.Dot, 1, 1)} ${commit.getFormattedDiffStatus()}`
commit.isFile
? ''
: ` ${Strings.pad(GlyphChars.Dot, 1, 1)} ${commit.getFormattedDiffStatus({ compact: true })}`
}`;
}
}

正在加载...
取消
保存