RELEASE 2.7.0 OR ABOVE
Automatic list insertion is a function where a list is automatically inserted when you enter a space after entering text such as *, -, #, and 1.
You can set the 'editor.autoList' value to false so that the list is not automatically inserted. (Default is ‘true’.)
const synapEditorConfig = {
...
/**
* You can set whether to use the function of inserting bullets / numbers with '*, -, #, 1. + space'.
*/
'editor.autoList': true,
...
};
| editor.autoList: true (기본값) | editor.autoList: false |
|---|---|

