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,8 +4,10 @@
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
import { getNode, getDeepestNode, findNextWord, findPrevWord } from './util';
import { getDeepestNode, findNextWord, findPrevWord } from './util';
import Node from '@emmetio/node';
import { getNode } from './emmetForVSCode/emmetUtils';
export function nextItemStylesheet(startOffset: vscode.Position, endOffset: vscode.Position, editor: vscode.TextEditor, rootNode: Node): vscode.Selection {
let currentNode = getNode(rootNode, endOffset, true);