Prepping to move completion provider to a re-usable module

This commit is contained in:
Ramya Achutha Rao
2017-06-21 14:08:42 -07:00
parent d51eaa45c8
commit a057a5974a
16 changed files with 349 additions and 286 deletions

View File

@@ -4,13 +4,15 @@
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
import { validate, isStyleSheet } from './util';
import { validate } from './util';
import { nextItemHTML, prevItemHTML } from './selectItemHTML';
import { nextItemStylesheet, prevItemStylesheet } from './selectItemStylesheet';
import parseStylesheet from '@emmetio/css-parser';
import parse from '@emmetio/html-matcher';
import Node from '@emmetio/node';
import { DocumentStreamReader } from './bufferStream';
import { DocumentStreamReader } from './emmetForVSCode/bufferStream';
import { isStyleSheet } from './emmetForVSCode/emmetUtils';
export function fetchSelectItem(direction: string): void {
let editor = vscode.window.activeTextEditor;