소스 검색

Adds reveal commit option to hovers

main
Eric Amodio 2 년 전
부모
커밋
175e0cc9ac
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      src/git/formatters/commitFormatter.ts

+ 10
- 0
src/git/formatters/commitFormatter.ts 파일 보기

@ -6,6 +6,7 @@ import type {
OpenPullRequestActionContext,
} from '../../api/gitlens';
import { getPresenceDataUri } from '../../avatars';
import type { ShowQuickCommitCommandArgs } from '../../commands';
import {
ConnectRemoteProviderCommand,
DiffWithCommand,
@ -430,6 +431,15 @@ export class CommitFormatter extends Formatter {
)} "Open Blame Prior to this Change")`;
}
commands += ` &nbsp;[$(search)](${Command.getMarkdownCommandArgsCore<ShowQuickCommitCommandArgs>(
Commands.RevealCommitInView,
{
repoPath: this._item.repoPath,
sha: this._item.sha,
revealInView: true,
},
)} "Reveal in Side Bar")`;
if (arePlusFeaturesEnabled()) {
commands += ` &nbsp;[$(gitlens-graph)](${Command.getMarkdownCommandArgsCore<ShowInCommitGraphCommandArgs>(
Commands.ShowInCommitGraph,

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