JSPM

  • Created
  • Published
  • Downloads 31303
  • Score
    100M100P100Q168684F
  • License MIT

Theme bbedit for CodeMirror.

Package Exports

  • @uiw/codemirror-theme-bbedit
  • @uiw/codemirror-theme-bbedit/cjs/index.js
  • @uiw/codemirror-theme-bbedit/esm/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/codemirror-theme-bbedit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

BBEdit Theme

Buy me a coffee npm version

codemirror-theme-bbedit

Install

npm install @uiw/codemirror-theme-bbedit --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { bbedit } from '@uiw/codemirror-theme-bbedit';

const state = EditorState.create({
  doc: 'my source code',
  extensions: [bbedit, javascript({ jsx: true })],
});

Using in React:

import { tags as t } from '@lezer/highlight';
import { bbedit, bbeditInit } from '@uiw/codemirror-theme-bbedit';

<CodeMirror theme={bbedit} />
<CodeMirror
  theme={bbeditInit({
    settings: {
      caret: '#c6c6c6',
      fontFamily: 'monospace',
    },
    styles: [
      { tag: t.comment, color: '#6272a4' },
    ]
  })}
/>

API

import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsBbedit: CreateThemeOptions['settings'];
export declare const bbeditInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const bbedit: import('@codemirror/state').Extension;

Usage

import CodeMirror from '@uiw/react-codemirror';
import { bbedit } from '@uiw/codemirror-theme-bbedit';
import { javascript } from '@codemirror/lang-javascript';

function App() {
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={bbedit}
      extensions={[javascript({ jsx: true })]}
      onChange={(value, viewUpdate) => {
        console.log('value:', value);
      }}
    />
  );
}
export default App;
import { EditorView } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { bbedit } from '@uiw/codemirror-theme-bbedit';

const state = EditorState.create({
  doc: 'my source code',
  extensions: [bbedit, javascript({ jsx: true })],
});

const view = new EditorView({
  parent: document.querySelector('#editor'),
  state,
});

Contributors

As always, thanks to our amazing contributors!

Made with github-action-contributors.

License

Licensed under the MIT License.