Browse Source

Fixes imports

main
Eric Amodio 5 years ago
parent
commit
b13b07a1b4
3 changed files with 3 additions and 4 deletions
  1. +1
    -1
      src/commands/switchMode.ts
  2. +1
    -2
      src/git/formatters/commitFormatter.ts
  3. +1
    -1
      src/keyboard.ts

+ 1
- 1
src/commands/switchMode.ts View File

@ -4,7 +4,7 @@ import { configuration } from '../configuration';
import { Container } from '../container';
import { ModesQuickPick } from '../quickpicks';
import { command, Command, Commands } from './common';
import { log } from '../system/decorators/log';
import { log } from '../system';
import { Logger } from '../logger';
@command()

+ 1
- 2
src/git/formatters/commitFormatter.ts View File

@ -12,12 +12,11 @@ import { DateStyle, FileAnnotationType } from '../../configuration';
import { GlyphChars } from '../../constants';
import { Container } from '../../container';
import { GitCommit, GitLogCommit, GitRemote, GitService, GitUri, Issue, PullRequest } from '../gitService';
import { Strings } from '../../system';
import { Promises, Strings } from '../../system';
import { FormatOptions, Formatter } from './formatter';
import { ContactPresence } from '../../vsls/vsls';
import { getPresenceDataUri } from '../../avatars';
import { emojify } from '../../emojis';
import { Promises } from '../../system/promise';
const emptyStr = '';

+ 1
- 1
src/keyboard.ts View File

@ -2,7 +2,7 @@
import { commands, Disposable } from 'vscode';
import { CommandContext, extensionId, setCommandContext } from './constants';
import { Logger } from './logger';
import { log } from './system/decorators/log';
import { log } from './system';
export declare interface KeyCommand {
onDidPressKey?(key: Keys): void | Promise<void>;

Loading…
Cancel
Save