|
1 | 1 | import type { ScopeType } from "@cursorless/common";
|
| 2 | +import { LanguageDefinitions } from "../../../languages/LanguageDefinitions"; |
2 | 3 | import { CharacterScopeHandler } from "./CharacterScopeHandler";
|
3 |
| -import { CustomRegexScopeHandler } from "./RegexScopeHandler"; |
| 4 | +import { ContiguousScopeHandler } from "./ContiguousScopeHandler"; |
4 | 5 | import { DocumentScopeHandler } from "./DocumentScopeHandler";
|
5 | 6 | import { IdentifierScopeHandler } from "./IdentifierScopeHandler";
|
6 | 7 | import { LineScopeHandler } from "./LineScopeHandler";
|
7 |
| -import { NonWhitespaceSequenceScopeHandler } from "./RegexScopeHandler"; |
8 | 8 | import { OneOfScopeHandler } from "./OneOfScopeHandler";
|
9 | 9 | import { ParagraphScopeHandler } from "./ParagraphScopeHandler";
|
| 10 | +import { |
| 11 | + CustomRegexScopeHandler, |
| 12 | + NonWhitespaceSequenceScopeHandler, |
| 13 | + UrlScopeHandler, |
| 14 | +} from "./RegexScopeHandler"; |
10 | 15 | import { ScopeHandlerFactory } from "./ScopeHandlerFactory";
|
11 | 16 | import { SentenceScopeHandler } from "./SentenceScopeHandler/SentenceScopeHandler";
|
12 | 17 | import { TokenScopeHandler } from "./TokenScopeHandler";
|
13 |
| -import { UrlScopeHandler } from "./RegexScopeHandler"; |
14 | 18 | import { WordScopeHandler } from "./WordScopeHandler/WordScopeHandler";
|
15 |
| -import { LanguageDefinitions } from "../../../languages/LanguageDefinitions"; |
16 | 19 | import type { CustomScopeType, ScopeHandler } from "./scopeHandler.types";
|
17 |
| -import { ContiguousScopeHandler } from "./ContiguousScopeHandler"; |
18 | 20 |
|
19 | 21 | /**
|
20 | 22 | * Returns a scope handler for the given scope type and language id, or
|
|
0 commit comments