Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourYellow
titleRELEASE 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. 등의 텍스트를 입력 후 Space 입력시 자동으로 리스트가 삽입되는 기능입니다.


You can set the 'editor.autoList' 값을 false로 설정하여 자동으로 리스트가 삽입되지 않도록 설정이 가능합니다. (기본값 truevalue to false so that the list is not automatically inserted. (Default is ‘true’.)

Code Block
languagejs
themeEmacs
const synapEditorConfig = {
	...
	/**
	 * You can set whether to use the function of inserting bullets / numbers with '*, -, #, 1. + space'를 사용하여 글머리 기호/번호를 삽입하는 기능의 사용 여부를 설정합니다.
	 */
	'editor.autoList': true,
	...
};

...