소스 검색

Fixes extra newline in multiline commit messages

main
Eric Amodio 7 년 전
부모
커밋
c1c65127b7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/formatters/commit.ts

+ 1
- 1
src/git/formatters/commit.ts 파일 보기

@ -138,7 +138,7 @@ export class CommitFormatter {
}
static toHoverAnnotation(commit: GitCommit, dateFormat: string = 'MMMM Do, YYYY h:MMa'): string | string[] {
const message = commit.isUncommitted ? '' : `\n\n> ${commit.message.replace(/\n/g, '\n>\n> ')}`;
const message = commit.isUncommitted ? '' : `\n\n> ${commit.message.replace(/\n/g, ' \n')}`;
return `\`${commit.shortSha}\`   __${commit.author}__, ${moment(commit.date).fromNow()}   _(${moment(commit.date).format(dateFormat)})_${message}`;
}

불러오는 중...
취소
저장