JSPM

  • Created
  • Published
  • Downloads 29914
  • Score
    100M100P100Q165326F
  • License MIT

Theme copilot for CodeMirror.

Package Exports

  • @uiw/codemirror-theme-copilot
  • @uiw/codemirror-theme-copilot/cjs/index.js
  • @uiw/codemirror-theme-copilot/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-copilot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Copilot Theme

npm version

Copilot theme for cm6, generated from copilot-theme.

codemirror-theme-copilot

Install

npm install @uiw/codemirror-theme-copilot --save
import { copilot, copilotInit } from '@uiw/codemirror-theme-copilot';

<CodeMirror theme={copilot} />
<CodeMirror
  theme={copilotInit({
    settings: {
      caret: '#c6c6c6',
      fontFamily: 'monospace',
    }
  })}
/>

API

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

Usage

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

function App() {
  return (
    <CodeMirror
      value="console.log('hello world!');"
      height="200px"
      theme={copilot}
      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 { copilot } from '@uiw/codemirror-theme-copilot';

const state = EditorState.create({
  doc: 'my source code',
  extensions: [copilot, 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.