diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d7aa76c..7b997e9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ ### Added - Added feature to close editor tab on middle click ([support#758]). +### Removed +- Removed word-based autocompletion ([support#757]). + +[support#757]: https://github.com/pybricks/support/issues/757 [support#758]: https://github.com/pybricks/support/issues/758 ## [2.0.0-beta.8] - 2022-10-25 diff --git a/src/editor/Editor.tsx b/src/editor/Editor.tsx index 1d39a1de..b7eaa080 100644 --- a/src/editor/Editor.tsx +++ b/src/editor/Editor.tsx @@ -373,6 +373,7 @@ const Editor: React.VFC = () => { contextmenu: false, rulers: [80], lineNumbersMinChars: 4, + wordBasedSuggestions: false, }), [], );