# 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;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wproofreader.com/v6.12.0/faq/technical/scayt-plugin-for-ckeditor-4/how-to-remove-the-scayt-plugin-in-ckeditor-4.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
