4.23.10 • Published 3 months ago

@uiw/codemirror-theme-copilot v4.23.10

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Copilot Theme

Buy me a coffee npm version

Copilot theme for cm6, generated from copilot-theme.

Install

npm install @uiw/codemirror-theme-copilot --save
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 })],
});

Using in React:

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.

4.23.10

3 months ago

4.23.8

3 months ago

4.23.9

3 months ago

4.23.7

5 months ago

4.23.6

7 months ago

4.23.4

8 months ago

4.23.5

8 months ago

4.23.3

8 months ago

4.23.1

9 months ago

4.23.2

8 months ago

4.23.0

11 months ago

4.22.2

12 months ago

4.22.1

1 year ago

4.22.0

1 year ago

4.21.25

1 year ago

4.21.24

1 year ago

4.21.23

1 year ago

4.21.22

1 year ago

4.21.21

1 year ago

4.21.20

2 years ago

4.21.19

2 years ago

4.21.18

2 years ago

4.21.17

2 years ago

4.21.16

2 years ago

4.21.15

2 years ago

4.21.14

2 years ago

4.21.13

2 years ago

4.21.12

2 years ago

4.21.11

2 years ago