mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
Prepping to move completion provider to a re-usable module
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user