Added Markdown preview
This commit is contained in:
35
node_modules/@codemirror/commands/README.md
generated
vendored
Normal file
35
node_modules/@codemirror/commands/README.md
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# @codemirror/commands [](https://www.npmjs.org/package/@codemirror/commands)
|
||||
|
||||
[ [**WEBSITE**](https://codemirror.net/) | [**DOCS**](https://codemirror.net/docs/ref/#commands) | [**ISSUES**](https://github.com/codemirror/dev/issues) | [**FORUM**](https://discuss.codemirror.net/c/next/) | [**CHANGELOG**](https://github.com/codemirror/commands/blob/main/CHANGELOG.md) ]
|
||||
|
||||
This package implements a collection of editing commands for the
|
||||
[CodeMirror](https://codemirror.net/) code editor.
|
||||
|
||||
The [project page](https://codemirror.net/) has more information, a
|
||||
number of [examples](https://codemirror.net/examples/) and the
|
||||
[documentation](https://codemirror.net/docs/).
|
||||
|
||||
This code is released under an
|
||||
[MIT license](https://github.com/codemirror/commands/tree/main/LICENSE).
|
||||
|
||||
We aim to be an inclusive, welcoming community. To make that explicit,
|
||||
we have a [code of
|
||||
conduct](http://contributor-covenant.org/version/1/1/0/) that applies
|
||||
to communication around the project.
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
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}
|
||||
])
|
||||
]
|
||||
})
|
||||
```
|
||||
Reference in New Issue
Block a user