Skip to content

Commit

Permalink
Upgrade everything (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
dralletje authored Nov 7, 2022
1 parent c0afc3f commit 1b16986
Show file tree
Hide file tree
Showing 7 changed files with 5,246 additions and 13,321 deletions.
21 changes: 21 additions & 0 deletions dist/basic-setup.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { EditorState, EditorSelection, Compartment, SelectionRange, Facet, StateField, StateEffect, Transaction, Text, combineConfig, Annotation } from "@codemirror/state";
import { julia as julia_andrey } from "@plutojl/lang-julia";
import { keymap, EditorView, highlightSpecialChars, drawSelection, placeholder, Decoration, ViewUpdate, ViewPlugin, WidgetType, lineNumbers, rectangularSelection } from "@codemirror/view";
import { defaultKeymap, indentMore, indentLess, historyKeymap, history } from "@codemirror/commands";
import { indentOnInput, indentUnit, syntaxTree, syntaxTreeAvailable, bracketMatching, foldGutter, foldKeymap, HighlightStyle, defaultHighlightStyle, syntaxHighlighting } from "@codemirror/language";
import { tags } from "@lezer/highlight";
import { closeBrackets, closeBracketsKeymap } from "@codemirror/autocomplete";
import * as autocomplete from "@codemirror/autocomplete";
import { highlightSelectionMatches, searchKeymap, selectNextOccurrence } from "@codemirror/search";
import { completionKeymap } from "@codemirror/autocomplete";
import { TreeCursor, NodeProp, parseMixed } from "@lezer/common";
import { markdown, markdownLanguage } from "@codemirror/lang-markdown";
import { parseCode } from "@lezer/markdown";
import { html, htmlLanguage } from "@codemirror/lang-html";
import { javascript, javascriptLanguage } from "@codemirror/lang-javascript";
import { css, cssLanguage } from "@codemirror/lang-css";
import { sql, PostgreSQL } from "@codemirror/lang-sql";
import { python, pythonLanguage } from "@codemirror/lang-python";
import { collab } from "@codemirror/collab";
export { css, cssLanguage };
export { Facet, StateField, StateEffect, Transaction, indentUnit, EditorState, EditorSelection, Compartment, EditorView, SelectionRange, placeholder, julia_andrey, keymap, history, historyKeymap, defaultKeymap, indentMore, indentLess, tags, HighlightStyle, syntaxHighlighting, syntaxTree, syntaxTreeAvailable, autocomplete, lineNumbers, highlightSpecialChars, foldGutter, drawSelection, indentOnInput, defaultHighlightStyle, bracketMatching, closeBrackets, rectangularSelection, highlightSelectionMatches, closeBracketsKeymap, searchKeymap, selectNextOccurrence, foldKeymap, completionKeymap, Decoration, ViewUpdate, ViewPlugin, WidgetType, TreeCursor, Text, combineConfig, NodeProp, markdown, markdownLanguage, parseCode, parseMixed, html, htmlLanguage, javascript, javascriptLanguage, sql, PostgreSQL, python, pythonLanguage, collab, Annotation, };
Loading

0 comments on commit 1b16986

Please sign in to comment.