diff --git a/docs/index.md b/docs/index.md
index eb47776f..d411195e 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -10,7 +10,7 @@ title: index

-This documentation is based on version 3.6.18.
+This documentation is based on version 3.7.5.
Screenshots can be outdated but descriptions are up to date.
#### First steps
diff --git a/docs/widgets_editor.md b/docs/widgets_editor.md
index bce15976..c2f6ae0d 100644
--- a/docs/widgets_editor.md
+++ b/docs/widgets_editor.md
@@ -37,18 +37,18 @@ All these actions are assignable to a shortcut via the [shortcut editor](options
#### Automatic features
-Options exist to automatically close the curly brackets (`{ }`), the square brackets (`[ ]`), the parenthesis (`( )`) the double quotes (`" "`), the back-ticks and the single quotes.
+Options exist to automatically close the curly brackets (`{ }`), the square brackets (`[ ]`), the double quotes (`" "`), the back-ticks (`` ` ` ``) and the single quotes (`' '`).
The way the right curly bracket is inserted can be tweaked. For the other symbols the feature is always either individually on or off.
Options for the curly brackets:
- _autoCloseNever_: Deactivates the feature.
-- _autoCloseAtEof_: Closes a brace after a `{` located at the end of file.
-- _autoCloseAlways_: Closes a brace after a `{`.
+- _autoCloseAtEof_: **deprecated**, this mode has not effect anymore and is replaced automatically by a _autoCloseNever_.
+- _autoCloseAlways_: **deprecated**, this mode has not effect anymore and is replaced automatically by a _autoCloseLexically_.
- _autoCloseLexically_: Closes a brace after a `{` if the count of braces pairs is odd.
-- _autoCloseOnNewLineEof_: Closes a brace after a `{` located at the end of file but only after ENTER.
-- _autoCloseOnNewLineAlways_: Closes a brace after a `{` but only after ENTER.
+- _autoCloseOnNewLineEof_: **deprecated**, this mode has not effect anymore and is replaced automatically by _autoCloseOnNewLineLexically_.
+- _autoCloseOnNewLineAlways_: **deprecated**, this mode has not effect anymore and is replaced automatically by _autoCloseOnNewLineLexically_.
- _autoCloseOnNewLineLexically_: Closes a brace on ENTER and if the count of braces pairs is odd.
The last option is the default. Use the CTRL key to skip the auto closing done with ENTER.