6.11.1 • Published 5 months ago

@codemirror/language v6.11.1

Weekly downloads
1,248
License
MIT
Repository
github
Last release
5 months ago

@codemirror/language NPM version

[ WEBSITE | DOCS | ISSUES | FORUM | CHANGELOG ]

This package implements the language support infrastructure for the CodeMirror code editor.

The project page has more information, a number of examples and the documentation.

This code is released under an MIT license.

We aim to be an inclusive, welcoming community. To make that explicit, we have a code of conduct that applies to communication around the project.

Usage

Setting up a language from a Lezer parser looks like this:

import {parser} from "@lezer/json"
import {LRLanguage, continuedIndent, indentNodeProp,
        foldNodeProp, foldInside} from "@codemirror/language"

export const jsonLanguage = LRLanguage.define({
  name: "json",
  parser: parser.configure({
    props: [
      indentNodeProp.add({
        Object: continuedIndent({except: /^\s*\}/}),
        Array: continuedIndent({except: /^\s*\]/})
      }),
      foldNodeProp.add({
        "Object Array": foldInside
      })
    ]
  }),
  languageData: {
    closeBrackets: {brackets: ["[", "{", '"']},
    indentOnInput: /^\s*[\}\]]$/
  }
})

Often, you'll also use this package just to access some specific language-related features, such as accessing the editor's syntax tree...

import {syntaxTree} from "@codemirror/language"

const tree = syntaxTree(view)

... or computing the appriate indentation at a given point.

import {getIndentation} from "@codemirror/language"

console.log(getIndentation(view.state, view.state.selection.main.head))
codemirror_editor_publishcodemirror_idelang-karolcodemirror-next-lang-sqljs@infinitebrahmanuniverse/nolb-_codemvlang-playground@everything-registry/sub-chunk-184codemirror-lang-tiddlywikihcm-clocking-event-angular-componentscodemirror-lang-http@shaderpad/core@salinity/scrimp@webwriter/ww-codesweepaisvelte-jsoneditorsvelte-jsoneditor-cnsvelte-jsoneditor-plussvelte-jsoneditor-taosvelte-html-componentssveltemirrorwolfram-language-for-codemirrorw5-toolsx-star-designsubmarkdownntnsv-printvt-playgroundvtvvue-codemirrorvitepress-python-editor@bpmn-io/feel-editor@bpmn-io/feel-lint@bpmn-io/form-js-playground@bpmn-io/cm-theme@primo-app/primo@runno/runtime@robocorp/ds@wearemanic/uijafflejexl-parserjoplin-plugin-zotero-linkjson-schema-enhanced-editor-reactjson-schema-enhanced-editor-vuejupyterlab-macaulay2jupyter-divewidgetsjupyter-notepadjupyter-optmwidgetskmap-html-editorkitbooklang-firestorelang-javascript-limit-syntaxlang-jexllang-julialang-simplebooleanlang-wrenchlang-exprlang-feellang-legado-rulelang-papershivelang-python-scmlang-rome-formatter-irlang-bqnlang-clojurelang-criticmarkuplang-dilla-builderide-pluginimpaktapps-ui-buildersicp-bundleink-mde-lafink-mdehf-richtexthauhdahdoahdoahcm-commons-frontendlezer-lang-surrealqllocus-editor-uilu5-componentsmarkdown-plusmarktionlva-graphiql-highlightlake-codemirrormdgjx-webmdreact-editor@waii-ai/widgets@wander-lang/wander-components@windicss/shared-components@willyterry/feelers@weavy/uikit-web@wcfdehao/code-editor@webwriter/code@vef-framework/components@verdianople/thaumaturge@valtown/codemirror-ts@valtzu/codemirror-lang-el@writewithocto/ink@wcrichto/nota-syntax@trpc-playground/components@trpc-playground/query-extension@tk-tool/codemirror-lang-javascript@tk-tool/codemirror-lang-spel@turbofuro/codemirror-lang-tel
6.11.1

5 months ago

6.11.0

7 months ago

6.10.8

10 months ago

6.10.7

10 months ago

6.10.6

11 months ago

6.10.5

11 months ago

6.10.4

11 months ago

6.10.3

1 year ago

6.10.2

1 year ago

6.10.1

2 years ago

6.10.0

2 years ago

6.9.3

2 years ago

6.9.0

2 years ago

6.9.2

2 years ago

6.9.1

2 years ago

6.8.0

2 years ago

6.7.0

2 years ago

6.6.0

3 years ago

6.5.0

3 years ago

6.4.0

3 years ago

6.3.0

3 years ago

6.3.2

3 years ago

6.3.1

3 years ago

6.1.0

3 years ago

6.0.0

3 years ago

6.2.1

3 years ago

6.2.0

3 years ago

0.20.1

3 years ago

0.20.2

3 years ago

0.20.0

4 years ago

0.19.9

4 years ago

0.19.10

4 years ago

0.19.8

4 years ago

0.19.4

4 years ago

0.19.5

4 years ago

0.19.6

4 years ago

0.19.7

4 years ago

0.19.3

4 years ago

0.19.0

4 years ago

0.19.1

4 years ago

0.19.2

4 years ago

0.18.2

4 years ago

0.18.1

5 years ago

0.18.0

5 years ago

0.17.5

5 years ago

0.17.3

5 years ago

0.17.4

5 years ago

0.17.2

5 years ago

0.17.1

5 years ago

0.17.0

5 years ago