diff --git a/src/context_mapping.ts b/src/context_mapping.ts index f12c865..c4a8d52 100644 --- a/src/context_mapping.ts +++ b/src/context_mapping.ts @@ -6,7 +6,7 @@ */ import * as vscode from 'vscode'; -import DocumentContext from './context/document'; +import DocumentContext from './contexts/document'; /** * Manage mappings between Texinfo documents and corresponding contexts. diff --git a/src/context/document.ts b/src/contexts/document.ts similarity index 97% rename from src/context/document.ts rename to src/contexts/document.ts index 7c95c74..da455ae 100644 --- a/src/context/document.ts +++ b/src/contexts/document.ts @@ -1,5 +1,5 @@ /** - * context/document.ts + * contexts/document.ts * * @author CismonX * @license MIT diff --git a/src/context/document_symbol.ts b/src/contexts/document_symbol.ts similarity index 98% rename from src/context/document_symbol.ts rename to src/contexts/document_symbol.ts index 42b040a..1cf99b3 100644 --- a/src/context/document_symbol.ts +++ b/src/contexts/document_symbol.ts @@ -1,5 +1,5 @@ /** - * context/document_symbol.ts + * contexts/document_symbol.ts * * @author CismonX * @license MIT diff --git a/src/context/folding_range.ts b/src/contexts/folding_range.ts similarity index 99% rename from src/context/folding_range.ts rename to src/contexts/folding_range.ts index d6761a9..61ceba5 100644 --- a/src/context/folding_range.ts +++ b/src/contexts/folding_range.ts @@ -1,5 +1,5 @@ /** - * context/folding_range.ts + * contexts/folding_range.ts * * @author CismonX * @license MIT diff --git a/src/context/preview.ts b/src/contexts/preview.ts similarity index 99% rename from src/context/preview.ts rename to src/contexts/preview.ts index 2d0fd75..51cbb58 100644 --- a/src/context/preview.ts +++ b/src/contexts/preview.ts @@ -1,5 +1,5 @@ /** - * context/preview.ts + * contexts/preview.ts * * @author CismonX * @license MIT diff --git a/src/extension.ts b/src/extension.ts index fe1b9c1..19aca6c 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -10,7 +10,7 @@ import ContextMapping from './context_mapping'; import Diagnosis from './diagnosis'; import Logger from './logger'; import Options from './options'; -import PreviewContext from './context/preview'; +import PreviewContext from './contexts/preview'; import CompletionItemProvider from './providers/completion_item'; import DocumentSymbolProvider from './providers/document_symbol'; import FoldingRangeProvider from './providers/folding_range';