codemirror-wrapped-line-indent
A plugin for CodeMirror to handle wrapped line indentation
Last updated a year ago by fauzi9331 .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install codemirror-wrapped-line-indent 
SYNC missed versions from official npm registry.

Wrapped Line Indentation for CodeMirror

An extension for CodeMirror that adds indentation for wrapped lines.

Installation

Using npm:

npm install codemirror-wrapped-line-indent

Usage

import { EditorState } from '@codemirror/state';
import { EditorView } from '@codemirror/view';
import { wrappedLineIndent } from 'codemirror-wrapped-line-indent';

// ... your CodeMirror setup code ...

const state = EditorState.create({
  // ... other state options ...
  extensions: [
    EditorView.lineWrapping,
    wrappedLineIndent
  ]
});

const view = new EditorView({ state });

License

MIT

Current Tags

  • 1.0.9                                ...           latest (a year ago)
  • 1.0.8-alpha.0                                ...           next (2 years ago)

26 Versions

  • 1.0.9                                ...           a year ago
  • 1.0.8                                ...           2 years ago
  • 1.0.8-alpha.0                                ...           2 years ago
  • 1.0.7                                ...           2 years ago
  • 1.0.6                                ...           2 years ago
  • 1.0.6-alpha.8                                ...           2 years ago
  • 1.0.6-alpha.7                                ...           2 years ago
  • 1.0.6-alpha.6                                ...           2 years ago
  • 1.0.6-alpha.5                                ...           2 years ago
  • 1.0.6-alpha.4                                ...           2 years ago
  • 1.0.6-alpha.3                                ...           2 years ago
  • 1.0.6-alpha.2                                ...           2 years ago
  • 1.0.6-alpha.1                                ...           2 years ago
  • 1.0.6-alpha.0                                ...           2 years ago
  • 1.0.6-0                                ...           2 years ago
  • 1.0.5                                ...           2 years ago
  • 1.0.4                                ...           2 years ago
  • 1.0.4-beta.2                                ...           2 years ago
  • 1.0.4-beta.1                                ...           2 years ago
  • 1.0.4-beta.0                                ...           2 years ago
  • 1.0.3                                ...           2 years ago
  • 1.0.2                                ...           2 years ago
  • 1.0.1                                ...           2 years ago
  • 1.0.0                                ...           3 years ago
  • 0.0.2                                ...           3 years ago
  • 0.0.1                                ...           3 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |