Skip to content

Commit

Permalink
Removes unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Feb 14, 2019
1 parent 15d57bc commit a47e07b
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/annotations/annotations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ import {
ThemeColor,
workspace
} from 'vscode';
import {
DiffWithCommand,
OpenCommitInRemoteCommand,
OpenFileRevisionCommand,
ShowQuickCommitDetailsCommand,
ShowQuickCommitFileDetailsCommand
} from '../commands';
import { DiffWithCommand, ShowQuickCommitDetailsCommand } from '../commands';
import { FileAnnotationType } from '../configuration';
import { GlyphChars } from '../constants';
import { Container } from '../container';
Expand Down Expand Up @@ -49,9 +43,6 @@ interface IRenderOptions extends DecorationInstanceRenderOptions, ThemableDecora

const defaultHeatmapHotColor = '#f66a0a';
const defaultHeatmapColdColor = '#0a60f6';
const escapeMarkdownRegex = /[`\>\#\*\_\-\+\.]/g;
// const sampleMarkdown = '## message `not code` *not important* _no underline_ \n> don\'t quote me \n- don\'t list me \n+ don\'t list me \n1. don\'t list me \nnot h1 \n=== \nnot h2 \n---\n***\n---\n___';
const markdownHeaderReplacement = `${GlyphChars.ZeroWidthSpace}===`;

let computedHeatmapColor: {
color: string;
Expand Down

0 comments on commit a47e07b

Please sign in to comment.