ソースを参照

Adds authorNotYou token

main
Eric Amodio 4年前
コミット
6ee30f8f5c
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/git/formatters/commitFormatter.ts

+ 4
- 0
src/git/formatters/commitFormatter.ts ファイルの表示

@ -155,6 +155,10 @@ export class CommitFormatter extends Formatter {
return `[${author}](mailto:${this._item.email} "Email ${this._item.author} (${this._item.email})")`;
}
get authorNotYou() {
return this._item.author !== 'You' ? this.author : emptyStr;
}
get authorAgo() {
return this._padOrTruncate(this._authorDateAgo, this._options.tokenOptions.authorAgo);
}

読み込み中…
キャンセル
保存