Skip to content

Commit c9ee049

Browse files
committed
chore: organizeImport
1 parent 25783fa commit c9ee049

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { extensions, ExtensionContext, window, workspace } from 'coc.nvim';
1+
import { ExtensionContext, extensions, window, workspace } from 'coc.nvim';
22
import path from 'path';
33

44
export function customDataSetupCommand(context: ExtensionContext) {

src/completion.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import fetch from 'node-fetch';
2-
import { parse, walk } from 'css-tree';
3-
import { basename, dirname, extname, isAbsolute, join } from 'path';
41
import {
52
CompletionItem,
63
CompletionItemKind,
@@ -15,6 +12,9 @@ import {
1512
Uri,
1613
workspace,
1714
} from 'coc.nvim';
15+
import { parse, walk } from 'css-tree';
16+
import fetch from 'node-fetch';
17+
import { basename, dirname, extname, isAbsolute, join } from 'path';
1818

1919
export type Context = {
2020
ids: Map<string, CompletionItem>;

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { SelectorCompletionItemProvider } from './completion';
2-
import { ExtensionContext, commands, languages, workspace } from 'coc.nvim';
1+
import { commands, ExtensionContext, languages, workspace } from 'coc.nvim';
32
import { customDataSetupCommand } from './commands';
3+
import { SelectorCompletionItemProvider } from './completion';
44

55
export async function activate(context: ExtensionContext): Promise<void> {
66
const config = workspace.getConfiguration('html-css-support');

0 commit comments

Comments
 (0)