3545d00d46
Replaces most editing components with CM components, enabling vim mode and completions everywhere Fixes #205 Fixes #221 Fixes #222 Fixes #223
45 lines
726 B
TypeScript
45 lines
726 B
TypeScript
import type { ParseTree } from "$sb/lib/tree.ts";
|
|
import { ParsedQuery } from "$sb/lib/query.ts";
|
|
|
|
export type AppEvent =
|
|
| "page:click"
|
|
| "editor:complete"
|
|
| "minieditor:complete"
|
|
| "page:load"
|
|
| "editor:init"
|
|
| "plugs:loaded";
|
|
|
|
export type QueryProviderEvent = {
|
|
query: ParsedQuery;
|
|
pageName: string;
|
|
};
|
|
|
|
export type ClickEvent = {
|
|
page: string;
|
|
pos: number;
|
|
metaKey: boolean;
|
|
ctrlKey: boolean;
|
|
altKey: boolean;
|
|
};
|
|
|
|
export type IndexEvent = {
|
|
name: string;
|
|
text: string;
|
|
};
|
|
|
|
export type IndexTreeEvent = {
|
|
name: string;
|
|
tree: ParseTree;
|
|
};
|
|
|
|
export type PublishEvent = {
|
|
uri: string;
|
|
// Page name
|
|
name: string;
|
|
};
|
|
|
|
export type CompleteEvent = {
|
|
linePrefix: string;
|
|
pos: number;
|
|
};
|