버전: v2.20.2509, v3.2.2509 이상
대체 옵션: editor.autoAction


editor.autoList 옵션은 더 이상 사용되지 않으며, editor.autoAction 옵션으로 대체되었습니다.
editor.autoAction을 사용하면 다양한 자동 액션을 정의할 수 있으며, 기존 editor.autoList 기능(*, -, #, 1. + space)도 동일하게 설정할 수 있습니다.


기존 환경: editor.autoList 를 false 로 설정하면 editor.autoAction도 함께 비활성화됩니다.
신규 환경: editor.autoAction 옵션만 단독으로 사용하는 것을 권장합니다.



자동 리스트 삽입은 *, -, #, 1. 등의 텍스트를 입력 후 Space 입력시 자동으로 리스트가 삽입되는 기능입니다.


'editor.autoList' 값을 false로 설정하여 자동으로 리스트가 삽입되지 않도록 설정이 가능합니다. (기본값 true)

const synapEditorConfig = {
	...
	/**
	 * '*, -, #, 1. + space'를 사용하여 글머리 기호/번호를 삽입하는 기능의 사용 여부를 설정합니다.
	 */
	'editor.autoList': true,
	...
};


editor.autoList: true (기본값)editor.autoList: false