We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3723453 commit a17b817Copy full SHA for a17b817
packages/yasqe/src/autocompleters/index.ts
@@ -6,7 +6,7 @@ import { take } from "lodash-es";
6
const CodeMirror = require("codemirror");
7
require("./show-hint.scss");
8
export class CompleterConfig {
9
- onInitialize?: (this: CompleterConfig, yasqe: Yasqe) => void; //allows for e.g. registering event listeners in yasqe, like the prefix autocompleter does
+ onInitialize?: (this: CompleterConfig, yasqe: Yasqe) => void; //allows for e.g. registering event listeners in yasqe, like the prefix auto-completer does
10
isValidCompletionPosition: (yasqe: Yasqe) => boolean;
11
get: (yasqe: Yasqe, token?: AutocompletionToken) => Promise<string[]> | string[];
12
preProcessToken?: (yasqe: Yasqe, token: Token) => AutocompletionToken;
0 commit comments