Skip to content

Commit

Permalink
remove unused imports and code
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Nov 17, 2019
1 parent 9bb6114 commit 57f025d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 68 deletions.
50 changes: 0 additions & 50 deletions packages/editor/src/excludedIntelliSenseKeys.ts

This file was deleted.

22 changes: 4 additions & 18 deletions packages/editor/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,15 @@ import CodeMirror, {
Editor,
EditorChangeLinkedList,
EditorFromTextArea,
Position,
Token
Position
} from "codemirror";

import {
configurableCodeMirrorOptions,
FullEditorConfiguration,
isConfigurable
} from "./configurable";
import { FullEditorConfiguration, isConfigurable } from "./configurable";

import { debounce } from "lodash";
import * as React from "react";
import ReactDOM from "react-dom";
import {
empty,
fromEvent,
merge,
Observable,
of,
Subject,
Subscription
} from "rxjs";
import { empty, merge, Observable, Subject, Subscription } from "rxjs";
import {
catchError,
debounceTime,
Expand All @@ -37,7 +24,6 @@ import {
takeUntil
} from "rxjs/operators";

import { excludedIntelliSenseTriggerKeys } from "./excludedIntelliSenseKeys";
import { codeComplete, pick } from "./jupyter/complete";
import { tool } from "./jupyter/tooltip";

Expand Down Expand Up @@ -228,7 +214,7 @@ export default class CodeMirrorEditor extends React.PureComponent<

require("./mode/ipython");

const { completion, editorFocused, focusAbove, focusBelow } = this.props;
const { editorFocused, focusAbove, focusBelow } = this.props;

// ensure a single tooltip holder exists on document.body
const tipHolder = document.getElementsByClassName(
Expand Down

0 comments on commit 57f025d

Please sign in to comment.