소스 검색

Removes space before ellipsis for consistency

main
Eric Amodio 6 년 전
부모
커밋
a04f25f4e8
3개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. +3
    -3
      src/commands/diffBranchWithBranch.ts
  2. +1
    -1
      src/commands/diffDirectory.ts
  3. +1
    -1
      src/commands/diffWithBranch.ts

+ 3
- 3
src/commands/diffBranchWithBranch.ts 파일 보기

@ -49,13 +49,13 @@ export class DiffBranchWithBranchCommand extends ActiveEditorCommand {
let placeHolder;
switch (args.ref2) {
case '':
placeHolder = `Compare Working Tree to ${GlyphChars.Ellipsis}`;
placeHolder = `Compare Working Tree to${GlyphChars.Ellipsis}`;
break;
case 'HEAD':
placeHolder = `Compare HEAD to ${GlyphChars.Ellipsis}`;
placeHolder = `Compare HEAD to${GlyphChars.Ellipsis}`;
break;
default:
placeHolder = `Compare ${args.ref2} to ${GlyphChars.Ellipsis}`;
placeHolder = `Compare ${args.ref2} to${GlyphChars.Ellipsis}`;
break;
}

+ 1
- 1
src/commands/diffDirectory.ts 파일 보기

@ -64,7 +64,7 @@ export class DiffDirectoryCommand extends ActiveEditorCommand {
if (!args.ref1) {
args = { ...args };
const placeHolder = `Compare Working Tree to ${GlyphChars.Ellipsis}`;
const placeHolder = `Compare Working Tree to${GlyphChars.Ellipsis}`;
progressCancellation = BranchesAndTagsQuickPick.showProgress(placeHolder);

+ 1
- 1
src/commands/diffWithBranch.ts 파일 보기

@ -34,7 +34,7 @@ export class DiffWithBranchCommand extends ActiveEditorCommand {
const gitUri = await GitUri.fromUri(uri);
if (!gitUri.repoPath) return Messages.showNoRepositoryWarningMessage(`Unable to open file compare`);
const placeHolder = `Compare ${path.basename(gitUri.fsPath)} with ${GlyphChars.Ellipsis}`;
const placeHolder = `Compare ${path.basename(gitUri.fsPath)} with${GlyphChars.Ellipsis}`;
const progressCancellation = BranchesAndTagsQuickPick.showProgress(placeHolder);
try {

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