All Projects → emmetio → codemirror-plugin

emmetio / codemirror-plugin

Licence: MIT license
Emmet plugin for CodeMirror web editor

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to codemirror-plugin

magento-advanced-code-editor
An advanced code editor that'll make it much easier to write clean markup for CMS pages, static blocks, product pages and Transactional Emails.
Stars: ✭ 19 (-65.45%)
Mutual labels:  codemirror, emmet
phpPgAdmin6
PHP7+ Based administration tool for PostgreSQL 9.3+
Stars: ✭ 45 (-18.18%)
Mutual labels:  codemirror
elmmet
VS Code extension to compile emmet snippets to composition of elm functions
Stars: ✭ 17 (-69.09%)
Mutual labels:  emmet
vscode-inline-html
🎨 Adding Syntax Highlighting, Emmet, IntelliSense support for ES6 Template Strings in Visual Studio Code.
Stars: ✭ 31 (-43.64%)
Mutual labels:  emmet
fongshen-editor
A highly customizable code-inserting editor for markdown or other languages
Stars: ✭ 35 (-36.36%)
Mutual labels:  codemirror
codemirror-blocks
A library for building language-specific, CodeMirror-friendly editors that are a11y-friendly.
Stars: ✭ 22 (-60%)
Mutual labels:  codemirror
acf-code-field
WordPress ACF Plugin to add a Codemirror powered field
Stars: ✭ 34 (-38.18%)
Mutual labels:  codemirror
emmet-monaco
Emmet support for monaco-editor
Stars: ✭ 19 (-65.45%)
Mutual labels:  emmet
ink
The flexible TypeScript Markdown editor that powers https://octo.app
Stars: ✭ 82 (+49.09%)
Mutual labels:  codemirror
TW5-CodeMirror-Enhanced
An enhanced for CodeMirror framework in TiddlyWiki, including TW5 highlight, WikiLink auto-completion, expandable hint, snippets, etc.
Stars: ✭ 24 (-56.36%)
Mutual labels:  codemirror
ndslvim
专用于C-family和web前端开发的vim配置(其实通用性也还不错啦)
Stars: ✭ 14 (-74.55%)
Mutual labels:  emmet
emma.css
🍴 Emma.css { utility-classes: emmet-like; }
Stars: ✭ 53 (-3.64%)
Mutual labels:  emmet
codemirror-promql
PromQL support for the CodeMirror code editor
Stars: ✭ 35 (-36.36%)
Mutual labels:  codemirror
dword
Web editor based on CodeMirror
Stars: ✭ 37 (-32.73%)
Mutual labels:  codemirror
py-emmet
Emmet abbreviation parser and expander, implemented in Python
Stars: ✭ 32 (-41.82%)
Mutual labels:  emmet
TW5-codemirror-plus
An attempt to make a better writing experience for TW using codemirror.
Stars: ✭ 26 (-52.73%)
Mutual labels:  codemirror
emmet-cli
Emmet command line interface
Stars: ✭ 27 (-50.91%)
Mutual labels:  emmet
codemirror-autosuggest
CodeMirror autosuggest addon
Stars: ✭ 44 (-20%)
Mutual labels:  codemirror
macos-snippets
Snip is a lightweight snippets manager app for macOS
Stars: ✭ 238 (+332.73%)
Mutual labels:  codemirror
codemirror-buttons
CodeMirror buttons addon
Stars: ✭ 30 (-45.45%)
Mutual labels:  codemirror

Emmet extension for CodeMirror editor

CodeMirror extension that adds Emmet support to text editor.

How to use

This extension can be installed as a regular npm module:

npm i @emmetio/codemirror-plugin

The package comes in two flavors: a stand-alone browser bundle and ES/CommonJS modules that you can use in your app.

If you’re building an app, you can use extension like this:

import CodeMirror from 'codemirror';
import emmet from '@emmetio/codemirror-plugin';

// Register extension on CodeMirror object
emmet(CodeMirror);

// Create editor instance and provide keymap for Emmet actions
const editor = CodeMirror.fromTextArea(document.getElementById('code'), {
    mode : "text/html",
    extraKeys: {
        'Tab': 'emmetExpandAbbreviation',
        'Esc': 'emmetResetAbbreviation',
        'Enter': 'emmetInsertLineBreak'
    }
});

For a stand-alone, basic usage, simply add dist/browser.js file into your page:

<script src="./node_modules/codemirror/lib/codemirror.js"></script>
<script src="./node_modules/@emmetio/codemirror-plugin/dist/browser.js"></script>

<form>
    <textarea id="code" name="code"></textarea>
</form>

<script>
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
    mode : "text/html",
    extraKeys: {
        'Tab': 'emmetExpandAbbreviation',
        'Esc': 'emmetResetAbbreviation',
        'Enter': 'emmetInsertLineBreak'
    }
});
</script>

Expanding abbreviations

Emmet extension can track abbreviations that user enters in some known syntaxes like HTML and CSS. When user enters something that looks like Emmet abbreviation, extension starts abbreviation tracking (adds emmet-abbreviation class to a text fragment). WHen abbreviation becomes complex (expands to more that one element), it displays abbreviation preview:

Emmet abbreviation example

Run emmetExpandAbbreviation command to expand tracked abbreviation or emmetResetAbbreviation to reset it. Suggested key bindings are Tab for emmetExpandAbbreviation and Esc for emmetResetAbbreviation.

Abbreviation tracker is context-aware: it detect current syntax context and works only where abbreviation expected. For example, in HTML syntax it works in plain text context only and doesn’t work, for example, in attribute value or tag name.

If you already have abbreviation in editor, you can capture it to continue editing: run emmetCaptureAbbreviation action (Ctrl-Space by default):

Emmet abbreviation capturing

Abbreviation mode

In case if abbreviation tracking is unavailable or you want to give user an opportunity to enter and expand abbreviation with interactive preview, a special abbreviation mode is available. Run emmetEnterAbbreviationMode command to enter this mode: everything user types will be tracked as abbreviation with preview and validation. Use emmetExpandAbbreviation command to expand it or emmetResetAbbreviation to quit abbreviation mode.

JSX abbreviation

In order to not distract user with unexpected abbreviation tracking, in JSX syntax Emmet requires to prefix abbreviation with < to provide more natural context where JSX markup is required.

Emmet JSX example

Tag pair marking and renaming

Extension is able to mark paired open and close HTML tags in editor: it adds emmet-class-tag and emmet-close-tag name to matched tag names. Optionally, extension can display preview of matching open tag when cursor is inside close tag.

When tag pair tag marking is enabled, it’s possible to automatically rename tag pair when you update open or close tag:

Emmet tag pair example

Commands

The package itself follows CodeMirror extension convention and registers new commands in CodeMirror namespace. In order to use Emmet, you should create CodeMirror instance and provide keymap with the following Emmet actions:

  • emmetExpandAbbreviation – expand tracked abbreviation from current cursor position (see Expanding abbreviations).
  • emmetResetAbbreviation – reset tracked abbreviation in editor (see Expanding abbreviations).
  • emmetEnterAbbreviationMode – enters abbreviation mode.
  • emmetInsertLineBreak – inserts formatted line break if cursor is between tags.
  • emmetExpandAbbreviationAll – expands abbreviation from current cursor position. Unlike emmetExpandAbbreviation, it doesn’t require tracked abbreviation: it extracts abbreviation from current cursor position and can be used in any document syntax.
  • emmetWrapWithAbbreviationWrap with Abbreviation.
  • emmetBalance/emmetBalanceInwardBalance.
  • emmetToggleCommentToggle Comment
  • emmetEvaluateMathEvaluate Math Expression
  • emmetGoToNextEditPoint/emmetGoToPreviousEditPointGo to Edit Point
  • emmetGoToTagPairGo to Matching Pair
  • emmetIncrementNumberN/emmetDecrementNumberNIncrement/Decrement Number where N is 1, 01 or 10.
  • emmetRemoveTagRemove Tag
  • emmetSplitJoinTagSplit/Join Tag
  • emmetSelectNextItem/emmetSelectPreviousItemSelect Item

Options

You can pass emmet object when creating CodeMirror editor instance to modify extension behavior:

CodeMirror.fromTextArea(document.getElementById("code"), {
    mode : "text/html",
    lineNumbers : true,

    // Pass Emmet extension options
    emmet: {
        mark: true,
        markTagPairs: true,
        previewOpenTag: false,
    }
});

Extension supports the following options:

  • mark (boolean or string[]): enables abbreviation tracking and marking in editor. If true is provided, it will work in all known syntaxes. You can specify array of syntaxes/modes where abbreviation marking should work; array may include markup or stylesheet keyword to enable option for all known markup or stylesheet syntaxes.
  • preview (boolean or string[]): enable preview of tracked abbreviation. Preview is displayed only when abbreviation will expand in more than one element. Same as with mark option, you can enable it for all syntaxes (true) or limit it to specified syntaxes or syntax groups.
  • markTagPairs (boolean): enable HTML tag pair marking in editor.
  • previewOpenTag (boolean): displays open tag preview when cursor is inside its matching closing tag. Preview is displayed only if open tag has attributes and works only if markTagPairs is enabled
  • autoRenameTags (boolean): automatically rename tag pair when updating open or close tag name. Works only if markTagPairs is enabled.
  • attributeQuotes ('single' or 'double'): quotes to use in generated HTML attribute values. Default is 'double'.
  • markupStyle ('html', 'xhtml' or 'xml'): style for self-closing elements (like <br>) and boolean attributes in HTML syntax.
  • comments (boolean): enable automatic tag commenting. When enabled, elements generated from Emmet abbreviation with id and/or class attributes will receive a comment with these attribute values.
  • commentsTemplate (string): commenting template. Default value is \n<!-- /[#ID][.CLASS] -->. Outputs everything between [ and ] only if specified attribute name (written in UPPERCASE) exists in element. Attribute name is replaced with actual value. Use \n to add a newline.
  • bem (boolean): enable BEM support. When enabled, Emmet will treat class names starting with - as element and with _ as modifier in BEM notation. These class names will inherit block name from current or ancestor element. For example, the abbreviation ul.nav.nav_secondary>li.nav__item can be shortened to ul.nav._secondary>li.-item when this option enabled.
  • config (object): Emmet config with snippets and advanced options.

Emmet config

With config option (see above) you can add custom abbreviation snippets and fine-tune Emmet behavior.

Snippets are grouped by syntax (like html, css, pug etc.) and syntaxes are grouped by type: markup or stylesheet. You can specify snippets that should be available for all syntaxes in group or specific syntax only.

Snippets are just short aliases for Emmet abbreviations: you either specify shorthand for a larger abbreviation or define shape for a specific element:

CodeMirror.fromTextArea(document.getElementById("code"), {
    mode : "text/html",
    lineNumbers : true,

    // Pass Emmet extension options
    emmet: {
        config: {
            // Specify snippets for all markup syntaxes: HTML, XML, Pug etc.
            markup: {
                // Shorthand for larger abbreviation
                foo: 'div.foo>section.bar*3',

                // Define shape of element, looks like recursive abbreviation
                a: 'a[href title]',
                br: 'br/'
            },

            // Specify snippets for specific syntax only
            html: {
                nav: 'ul.nav>.nav-item*4>a'
            }
        }
    }
});

Note that markup and stylesheet snippet definitions are different. Markup snippets are written as Emmet abbreviations (e.g. you simply describe element name and its default attributes) while stylesheet snippets are aliases to CSS properties with optional keywords list, separated by | character. These keywords are used in abbreviation resolving process. For more examples, see check out default Emmet snippets.

See all available config params in GlobalConfig type.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].