@codemirror/commands
Collection of editing commands for the CodeMirror code editor
Last updated 4 years ago by marijn .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @codemirror/commands 
SYNC missed versions from official npm registry.

@codemirror/commands NPM version

[ WEBSITE | DOCS | ISSUES | FORUM | CHANGELOG ]

This package implements a collection of editing commands 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

import {EditorView, keymap} from "@codemirror/view"
import {standardKeymap, selectLine} from "@codemirror/commands"

const view = new EditorView({
  parent: document.body,
  extensions: [
    keymap.of([
      ...standardKeymap,
      {key: "Alt-l", mac: "Ctrl-l", run: selectLine}
    ])
  ]
})

Current Tags

  • 6.10.3                                ...           latest (a month ago)

50 Versions

  • 6.10.3                                ...           a month ago
  • 6.10.2                                ...           2 months ago
  • 6.10.1                                ...           4 months ago
  • 6.10.0                                ...           6 months ago
  • 6.9.0                                ...           6 months ago
  • 6.8.1                                ...           a year ago
  • 6.8.0                                ...           a year ago
  • 6.7.1                                ...           a year ago
  • 6.7.0                                ...           2 years ago
  • 6.6.2                                ...           2 years ago
  • 6.6.1                                ...           2 years ago
  • 6.6.0                                ...           2 years ago
  • 6.5.0                                ...           2 years ago
  • 6.4.0                                ...           2 years ago
  • 6.3.3                                ...           2 years ago
  • 6.3.2                                ...           2 years ago
  • 6.3.1                                ...           2 years ago
  • 6.3.0                                ...           3 years ago
  • 6.2.5                                ...           3 years ago
  • 6.2.4                                ...           3 years ago
  • 6.2.3                                ...           3 years ago
  • 6.2.2                                ...           3 years ago
  • 6.2.1                                ...           3 years ago
  • 6.2.0                                ...           3 years ago
  • 6.1.3                                ...           3 years ago
  • 6.1.2                                ...           3 years ago
  • 6.1.1                                ...           4 years ago
  • 6.1.0                                ...           4 years ago
  • 6.0.1                                ...           4 years ago
  • 6.0.0                                ...           4 years ago
  • 0.20.0                                ...           4 years ago
  • 0.19.8                                ...           4 years ago
  • 0.19.7                                ...           4 years ago
  • 0.19.6                                ...           4 years ago
  • 0.19.5                                ...           5 years ago
  • 0.19.4                                ...           5 years ago
  • 0.19.3                                ...           5 years ago
  • 0.19.2                                ...           5 years ago
  • 0.19.1                                ...           5 years ago
  • 0.19.0                                ...           5 years ago
  • 0.18.3                                ...           5 years ago
  • 0.18.2                                ...           5 years ago
  • 0.18.1                                ...           5 years ago
  • 0.18.0                                ...           5 years ago
  • 0.17.5                                ...           5 years ago
  • 0.17.4                                ...           5 years ago
  • 0.17.3                                ...           5 years ago
  • 0.17.2                                ...           5 years ago
  • 0.17.1                                ...           5 years ago
  • 0.17.0                                ...           5 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (4)
Dev Dependencies (2)

Copyright 2013 - present © cnpmjs.org | Home |