소스 검색

Removes duplicate toggle line blame command

main
Eric Amodio 5 년 전
부모
커밋
9d67f5ace6
1개의 변경된 파일0개의 추가작업 그리고 24개의 파일을 삭제
  1. +0
    -24
      src/commands/toggleLineBlame.ts

+ 0
- 24
src/commands/toggleLineBlame.ts 파일 보기

@ -1,24 +0,0 @@
'use strict';
import { TextEditor, Uri, window } from 'vscode';
import { Container } from '../container';
import { Logger } from '../logger';
import { ActiveEditorCommand, command, Commands } from './common';
@command()
export class ToggleLineBlameCommand extends ActiveEditorCommand {
constructor() {
super(Commands.ToggleLineBlame);
}
execute(editor: TextEditor, uri?: Uri) {
try {
return Container.lineAnnotations.toggle(editor);
}
catch (ex) {
Logger.error(ex, 'ToggleLineBlameCommand');
return window.showErrorMessage(
'Unable to toggle line blame annotations. See output channel for more details'
);
}
}
}

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