yii2cmf / yii2-codemirror-asset
CodeMirror is a versatile text editor implemented in JavaScript for the browser. It is specialized for editing code, and comes with a number of language modes and addons that implement more advanced editing functionality.
Package info
github.com/yii2cmf/yii2-codemirror-asset
Language:JavaScript
Type:yii2-extension
pkg:composer/yii2cmf/yii2-codemirror-asset
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2026-03-07 01:48:09 UTC
README
CodeMirror is a versatile text editor implemented in JavaScript for the browser. It is specialized for editing code, and comes with a number of language modes and addons that implement more advanced editing functionality.
Installation
The preferred way to install this extension is through composer.
Either run
composer require yii2cmf/yii2-codemirror-asset "1.0"
"yii2cmf/yii2-codemirror-asset": "1.0"
to the require section of your composer.json file.
Usage
Register asset bundle in view:
\yii2cmf\codemirror\CodeMirrorAsset::register($this);
Set a different theme and mode if necessary:
$this->params['codemirror_theme'] = 'darcula'; $this->params['codemirror_mode'] = 'clike'; \yii2cmf\codemirror\CodeMirrorAsset::register($this);