luwes/craft3-codemirror

Add the awesome in-browser code editor CodeMirror as a field type.

Installs: 48 949

Dependents: 1

Suggesters: 0

Security: 0

Stars: 18

Watchers: 5

Forks: 9

Open Issues: 10

Language:JavaScript

Type:craft-plugin

2.0.0 2022-08-22 13:43 UTC

This package is auto-updated.

Last update: 2024-03-24 17:27:02 UTC


README

Add the awesome in-browser code editor CodeMirror as a field type.

Screenshot

Installation

To install CodeMirror, follow these steps:

  1. Install with Composer via composer require luwes/craft-codemirror
  2. Install plugin in the Craft Control Panel under Settings > Plugins

CodeMirror works on Craft 3.x and 4.x.

CodeMirror Overview

https://github.com/codemirror/codemirror

Configuring CodeMirror

Copy the code below, create a file named code-mirror.php and place it in the craft config folder to override the default options.

return [
    'jsOptions' => [
        'theme' => 'default',
        'lineNumbers' => true,
        'lineWrapping' => true,
        'viewportMargin' => new JsExpression('Infinity'),
    ],
    'modes' => [
        'gfm', // the first mode is enabled by default
        'markdown',
        'htmlmixed',
        'javascript',
        'css',
        'xml',
    ],
    'addons' => [
        'mode/overlay', // needed for gfm (github flavored) mode
    ]
];

Brought to you by Wesley Luyten