> For the complete documentation index, see [llms.txt](https://docs.wproofreader.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wproofreader.com/v6.10.0.0/faq/technical/scayt-plugin-for-ckeditor-4/how-to-remove-the-scayt-plugin-in-ckeditor-4.md).

# How to remove the SCAYT plugin in CKEditor 4?

The WProofreader work in the CKEditor 4 requires turning off the SCAYT plugin. A free version of SpellCheckAsYouType (SCAYT) is provided as a plugin, integrated by default into the [CKEditor](https://ckeditor.com/ckeditor-4/) WYSIWYG editor. To remove the SCAYT plugin from CKEditor 4, add the following line to your CKEditor config.js file:

```javascript
config.removePlugins = 'scayt';
```

Set the config.scayt\_autoStartup configuration setting as `false` to prevent SCAYT from being turned on automatically on loading the editor. In this case, the SCAYT plugin for CKEditor 4 is available but turned off.

```javascript
config.scayt_autoStartup = false;
```
