editor_config.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. /**
  2. * 编辑器配置文件
  3. * 修改后重启creator生效
  4. */
  5. module.exports = {
  6. /**
  7. * 点击场景Node不需要主动打开的脚本名,正则匹配名字规则
  8. * 例子:
  9. * ignoreAutoOpenFile : '.*Base' 将匹配 'sceneBase' || 'xxxxBase' 等文件忽略掉
  10. */
  11. ignoreAutoOpenFile : '',
  12. /**
  13. * 编辑器页面配置
  14. * 有些配置已经在设置面板实现,将会覆盖本配置文件字段
  15. */
  16. // /**
  17. // * The aria label for the editor's textarea (when it is focused).
  18. // */
  19. // ariaLabel?: string;
  20. // /**
  21. // * The `tabindex` property of the editor's textarea
  22. // */
  23. // tabIndex?: number;
  24. // /**
  25. // * Render vertical lines at the specified columns.
  26. // * Defaults to empty array.
  27. // */
  28. // rulers?: (number | IRulerOption)[];
  29. // /**
  30. // * A string containing the word separators used when doing word navigation.
  31. // * Defaults to `~!@#$%^&*()-=+[{]}\\|;:\'",.<>/?
  32. // */
  33. // wordSeparators?: string;
  34. // /**
  35. // * Enable Linux primary clipboard.
  36. // * Defaults to true.
  37. // */
  38. // selectionClipboard?: boolean;
  39. // /**
  40. // * Control the rendering of line numbers.
  41. // * If it is a function, it will be invoked when rendering a line number and the return value will be rendered.
  42. // * Otherwise, if it is a truey, line numbers will be rendered normally (equivalent of using an identity function).
  43. // * Otherwise, line numbers will not be rendered.
  44. // * Defaults to `on`.
  45. // */
  46. // lineNumbers?: LineNumbersType;
  47. // /**
  48. // * Controls the minimal number of visible leading and trailing lines surrounding the cursor.
  49. // * Defaults to 0.
  50. // */
  51. // cursorSurroundingLines?: number;
  52. // /**
  53. // * Controls when `cursorSurroundingLines` should be enforced
  54. // * Defaults to `default`, `cursorSurroundingLines` is not enforced when cursor position is changed
  55. // * by mouse.
  56. // */
  57. // cursorSurroundingLinesStyle?: 'default' | 'all';
  58. // /**
  59. // * Render last line number when the file ends with a newline.
  60. // * Defaults to true.
  61. // */
  62. // renderFinalNewline?: boolean;
  63. // /**
  64. // * Remove unusual line terminators like LINE SEPARATOR (LS), PARAGRAPH SEPARATOR (PS).
  65. // * Defaults to 'prompt'.
  66. // */
  67. // unusualLineTerminators?: 'off' | 'prompt' | 'auto';
  68. // /**
  69. // * Should the corresponding line be selected when clicking on the line number?
  70. // * Defaults to true.
  71. // */
  72. // selectOnLineNumbers?: boolean;
  73. // /**
  74. // * Control the width of line numbers, by reserving horizontal space for rendering at least an amount of digits.
  75. // * Defaults to 5.
  76. // */
  77. // lineNumbersMinChars?: number;
  78. // /**
  79. // * Enable the rendering of the glyph margin.
  80. // * Defaults to true in vscode and to false in monaco-editor.
  81. // */
  82. // glyphMargin?: boolean;
  83. // /**
  84. // * The width reserved for line decorations (in px).
  85. // * Line decorations are placed between line numbers and the editor content.
  86. // * You can pass in a string in the format floating point followed by "ch". e.g. 1.3ch.
  87. // * Defaults to 10.
  88. // */
  89. // lineDecorationsWidth?: number | string;
  90. // /**
  91. // * When revealing the cursor, a virtual padding (px) is added to the cursor, turning it into a rectangle.
  92. // * This virtual padding ensures that the cursor gets revealed before hitting the edge of the viewport.
  93. // * Defaults to 30 (px).
  94. // */
  95. // revealHorizontalRightPadding?: number;
  96. // /**
  97. // * Render the editor selection with rounded borders.
  98. // * Defaults to true.
  99. // */
  100. // roundedSelection?: boolean;
  101. // /**
  102. // * Class name to be added to the editor.
  103. // */
  104. // extraEditorClassName?: string;
  105. // /**
  106. // * Should the editor be read only.
  107. // * Defaults to false.
  108. // */
  109. // readOnly?: boolean;
  110. // /**
  111. // * Rename matching regions on type.
  112. // * Defaults to false.
  113. // */
  114. // renameOnType?: boolean;
  115. // /**
  116. // * Should the editor render validation decorations.
  117. // * Defaults to editable.
  118. // */
  119. // renderValidationDecorations?: 'editable' | 'on' | 'off';
  120. // /**
  121. // * Control the behavior and rendering of the scrollbars.
  122. // */
  123. // scrollbar?: IEditorScrollbarOptions;
  124. // /**
  125. // * Control the behavior and rendering of the minimap.
  126. // */
  127. // minimap?: IEditorMinimapOptions;
  128. // /**
  129. // * Control the behavior of the find widget.
  130. // */
  131. // find?: IEditorFindOptions;
  132. // /**
  133. // * Display overflow widgets as `fixed`.
  134. // * Defaults to `false`.
  135. // */
  136. // fixedOverflowWidgets?: boolean;
  137. // /**
  138. // * The number of vertical lanes the overview ruler should render.
  139. // * Defaults to 3.
  140. // */
  141. // overviewRulerLanes?: number;
  142. // /**
  143. // * Controls if a border should be drawn around the overview ruler.
  144. // * Defaults to `true`.
  145. // */
  146. // overviewRulerBorder?: boolean;
  147. // /**
  148. // * Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'.
  149. // * Defaults to 'blink'.
  150. // */
  151. // cursorBlinking?: 'blink' | 'smooth' | 'phase' | 'expand' | 'solid';
  152. // /**
  153. // * Zoom the font in the editor when using the mouse wheel in combination with holding Ctrl.
  154. // * Defaults to false.
  155. // */
  156. // mouseWheelZoom?: boolean;
  157. // /**
  158. // * Control the mouse pointer style, either 'text' or 'default' or 'copy'
  159. // * Defaults to 'text'
  160. // */
  161. // mouseStyle?: 'text' | 'default' | 'copy';
  162. // /**
  163. // * Enable smooth caret animation.
  164. // * Defaults to false.
  165. // */
  166. // cursorSmoothCaretAnimation?: boolean;
  167. // /**
  168. // * Control the cursor style, either 'block' or 'line'.
  169. // * Defaults to 'line'.
  170. // */
  171. // cursorStyle?: 'line' | 'block' | 'underline' | 'line-thin' | 'block-outline' | 'underline-thin';
  172. // /**
  173. // * Control the width of the cursor when cursorStyle is set to 'line'
  174. // */
  175. // cursorWidth?: number;
  176. // /**
  177. // * Enable font ligatures.
  178. // * Defaults to false.
  179. // */
  180. // fontLigatures?: boolean | string;
  181. // /**
  182. // * Disable the use of `transform: translate3d(0px, 0px, 0px)` for the editor margin and lines layers.
  183. // * The usage of `transform: translate3d(0px, 0px, 0px)` acts as a hint for browsers to create an extra layer.
  184. // * Defaults to false.
  185. // */
  186. // disableLayerHinting?: boolean;
  187. // /**
  188. // * Disable the optimizations for monospace fonts.
  189. // * Defaults to false.
  190. // */
  191. // disableMonospaceOptimizations?: boolean;
  192. // /**
  193. // * Should the cursor be hidden in the overview ruler.
  194. // * Defaults to false.
  195. // */
  196. // hideCursorInOverviewRuler?: boolean;
  197. // /**
  198. // * Enable that scrolling can go one screen size after the last line.
  199. // * Defaults to true.
  200. // */
  201. // scrollBeyondLastLine?: boolean;
  202. // /**
  203. // * Enable that scrolling can go beyond the last column by a number of columns.
  204. // * Defaults to 5.
  205. // */
  206. // scrollBeyondLastColumn?: number;
  207. // /**
  208. // * Enable that the editor animates scrolling to a position.
  209. // * Defaults to false.
  210. // */
  211. // smoothScrolling?: boolean;
  212. // /**
  213. // * Enable that the editor will install an interval to check if its container dom node size has changed.
  214. // * Enabling this might have a severe performance impact.
  215. // * Defaults to false.
  216. // */
  217. // automaticLayout?: boolean;
  218. // /**
  219. // * Control the wrapping of the editor.
  220. // * When `wordWrap` = "off", the lines will never wrap.
  221. // * When `wordWrap` = "on", the lines will wrap at the viewport width.
  222. // * When `wordWrap` = "wordWrapColumn", the lines will wrap at `wordWrapColumn`.
  223. // * When `wordWrap` = "bounded", the lines will wrap at min(viewport width, wordWrapColumn).
  224. // * Defaults to "off".
  225. // */
  226. // wordWrap?: 'off' | 'on' | 'wordWrapColumn' | 'bounded';
  227. // /**
  228. // * Control the wrapping of the editor.
  229. // * When `wordWrap` = "off", the lines will never wrap.
  230. // * When `wordWrap` = "on", the lines will wrap at the viewport width.
  231. // * When `wordWrap` = "wordWrapColumn", the lines will wrap at `wordWrapColumn`.
  232. // * When `wordWrap` = "bounded", the lines will wrap at min(viewport width, wordWrapColumn).
  233. // * Defaults to 80.
  234. // */
  235. // wordWrapColumn?: number;
  236. // /**
  237. // * Force word wrapping when the text appears to be of a minified/generated file.
  238. // * Defaults to true.
  239. // */
  240. // wordWrapMinified?: boolean;
  241. // /**
  242. // * Control indentation of wrapped lines. Can be: 'none', 'same', 'indent' or 'deepIndent'.
  243. // * Defaults to 'same' in vscode and to 'none' in monaco-editor.
  244. // */
  245. // wrappingIndent?: 'none' | 'same' | 'indent' | 'deepIndent';
  246. // /**
  247. // * Controls the wrapping strategy to use.
  248. // * Defaults to 'simple'.
  249. // */
  250. // wrappingStrategy?: 'simple' | 'advanced';
  251. // /**
  252. // * Configure word wrapping characters. A break will be introduced before these characters.
  253. // * Defaults to '([{‘“〈《「『【〔([{「£¥$£¥++'.
  254. // */
  255. // wordWrapBreakBeforeCharacters?: string;
  256. // /**
  257. // * Configure word wrapping characters. A break will be introduced after these characters.
  258. // * Defaults to ' \t})]?|/&.,;¢°′″‰℃、。。、¢,.:;?!%・・ゝゞヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻ァィゥェォャュョッー”〉》」』】〕)]}」'.
  259. // */
  260. // wordWrapBreakAfterCharacters?: string;
  261. // /**
  262. // * Performance guard: Stop rendering a line after x characters.
  263. // * Defaults to 10000.
  264. // * Use -1 to never stop rendering
  265. // */
  266. // stopRenderingLineAfter?: number;
  267. // /**
  268. // * Configure the editor's hover.
  269. // */
  270. // hover?: IEditorHoverOptions;
  271. // /**
  272. // * Enable detecting links and making them clickable.
  273. // * Defaults to true.
  274. // */
  275. // links?: boolean;
  276. // /**
  277. // * Enable inline color decorators and color picker rendering.
  278. // */
  279. // colorDecorators?: boolean;
  280. // /**
  281. // * Control the behaviour of comments in the editor.
  282. // */
  283. // comments?: IEditorCommentsOptions;
  284. // /**
  285. // * Enable custom contextmenu.
  286. // * Defaults to true.
  287. // */
  288. // contextmenu?: boolean;
  289. // /**
  290. // * A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.
  291. // * Defaults to 1.
  292. // */
  293. // mouseWheelScrollSensitivity?: number;
  294. // /**
  295. // * FastScrolling mulitplier speed when pressing `Alt`
  296. // * Defaults to 5.
  297. // */
  298. // fastScrollSensitivity?: number;
  299. // /**
  300. // * Enable that the editor scrolls only the predominant axis. Prevents horizontal drift when scrolling vertically on a trackpad.
  301. // * Defaults to true.
  302. // */
  303. // scrollPredominantAxis?: boolean;
  304. // /**
  305. // * Enable that the selection with the mouse and keys is doing column selection.
  306. // * Defaults to false.
  307. // */
  308. // columnSelection?: boolean;
  309. // /**
  310. // * The modifier to be used to add multiple cursors with the mouse.
  311. // * Defaults to 'alt'
  312. // */
  313. // multiCursorModifier?: 'ctrlCmd' | 'alt';
  314. // /**
  315. // * Merge overlapping selections.
  316. // * Defaults to true
  317. // */
  318. // multiCursorMergeOverlapping?: boolean;
  319. // /**
  320. // * Configure the behaviour when pasting a text with the line count equal to the cursor count.
  321. // * Defaults to 'spread'.
  322. // */
  323. // multiCursorPaste?: 'spread' | 'full';
  324. // /**
  325. // * Configure the editor's accessibility support.
  326. // * Defaults to 'auto'. It is best to leave this to 'auto'.
  327. // */
  328. // accessibilitySupport?: 'auto' | 'off' | 'on';
  329. // /**
  330. // * Controls the number of lines in the editor that can be read out by a screen reader
  331. // */
  332. // accessibilityPageSize?: number;
  333. // /**
  334. // * Suggest options.
  335. // */
  336. // suggest?: ISuggestOptions;
  337. // /**
  338. // *
  339. // */
  340. // gotoLocation?: IGotoLocationOptions;
  341. // /**
  342. // * Enable quick suggestions (shadow suggestions)
  343. // * Defaults to true.
  344. // */
  345. // quickSuggestions?: boolean | IQuickSuggestionsOptions;
  346. // /**
  347. // * Quick suggestions show delay (in ms)
  348. // * Defaults to 10 (ms)
  349. // */
  350. // quickSuggestionsDelay?: number;
  351. // /**
  352. // * Controls the spacing around the editor.
  353. // */
  354. // padding?: IEditorPaddingOptions;
  355. // /**
  356. // * Parameter hint options.
  357. // */
  358. // parameterHints?: IEditorParameterHintOptions;
  359. // /**
  360. // * Options for auto closing brackets.
  361. // * Defaults to language defined behavior.
  362. // */
  363. // autoClosingBrackets?: EditorAutoClosingStrategy;
  364. // /**
  365. // * Options for auto closing quotes.
  366. // * Defaults to language defined behavior.
  367. // */
  368. // autoClosingQuotes?: EditorAutoClosingStrategy;
  369. // /**
  370. // * Options for typing over closing quotes or brackets.
  371. // */
  372. // autoClosingOvertype?: EditorAutoClosingOvertypeStrategy;
  373. // /**
  374. // * Options for auto surrounding.
  375. // * Defaults to always allowing auto surrounding.
  376. // */
  377. // autoSurround?: EditorAutoSurroundStrategy;
  378. // /**
  379. // * Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.
  380. // * Defaults to advanced.
  381. // */
  382. // autoIndent?: 'none' | 'keep' | 'brackets' | 'advanced' | 'full';
  383. // /**
  384. // * Enable format on type.
  385. // * Defaults to false.
  386. // */
  387. // formatOnType?: boolean;
  388. // /**
  389. // * Enable format on paste.
  390. // * Defaults to false.
  391. // */
  392. // formatOnPaste?: boolean;
  393. // /**
  394. // * Controls if the editor should allow to move selections via drag and drop.
  395. // * Defaults to false.
  396. // */
  397. // dragAndDrop?: boolean;
  398. // /**
  399. // * Enable the suggestion box to pop-up on trigger characters.
  400. // * Defaults to true.
  401. // */
  402. // suggestOnTriggerCharacters?: boolean;
  403. // /**
  404. // * Accept suggestions on ENTER.
  405. // * Defaults to 'on'.
  406. // */
  407. // acceptSuggestionOnEnter?: 'on' | 'smart' | 'off';
  408. // /**
  409. // * Accept suggestions on provider defined characters.
  410. // * Defaults to true.
  411. // */
  412. // acceptSuggestionOnCommitCharacter?: boolean;
  413. // /**
  414. // * Enable snippet suggestions. Default to 'true'.
  415. // */
  416. // snippetSuggestions?: 'top' | 'bottom' | 'inline' | 'none';
  417. // /**
  418. // * Copying without a selection copies the current line.
  419. // */
  420. // emptySelectionClipboard?: boolean;
  421. // /**
  422. // * Syntax highlighting is copied.
  423. // */
  424. // copyWithSyntaxHighlighting?: boolean;
  425. // /**
  426. // * The history mode for suggestions.
  427. // */
  428. // suggestSelection?: 'first' | 'recentlyUsed' | 'recentlyUsedByPrefix';
  429. // /**
  430. // * The font size for the suggest widget.
  431. // * Defaults to the editor font size.
  432. // */
  433. // suggestFontSize?: number;
  434. // /**
  435. // * The line height for the suggest widget.
  436. // * Defaults to the editor line height.
  437. // */
  438. // suggestLineHeight?: number;
  439. // /**
  440. // * Enable tab completion.
  441. // */
  442. // tabCompletion?: 'on' | 'off' | 'onlySnippets';
  443. // /**
  444. // * Enable selection highlight.
  445. // * Defaults to true.
  446. // */
  447. // selectionHighlight?: boolean;
  448. // /**
  449. // * Enable semantic occurrences highlight.
  450. // * Defaults to true.
  451. // */
  452. // occurrencesHighlight?: boolean;
  453. // /**
  454. // * Show code lens
  455. // * Defaults to true.
  456. // */
  457. // codeLens?: boolean;
  458. // /**
  459. // * Control the behavior and rendering of the code action lightbulb.
  460. // */
  461. // lightbulb?: IEditorLightbulbOptions;
  462. // /**
  463. // * Timeout for running code actions on save.
  464. // */
  465. // codeActionsOnSaveTimeout?: number;
  466. // /**
  467. // * Enable code folding.
  468. // * Defaults to true.
  469. // */
  470. // folding?: boolean;
  471. // /**
  472. // * Selects the folding strategy. 'auto' uses the strategies contributed for the current document, 'indentation' uses the indentation based folding strategy.
  473. // * Defaults to 'auto'.
  474. // */
  475. // foldingStrategy?: 'auto' | 'indentation';
  476. // /**
  477. // * Enable highlight for folded regions.
  478. // * Defaults to true.
  479. // */
  480. // foldingHighlight?: boolean;
  481. // /**
  482. // * Controls whether the fold actions in the gutter stay always visible or hide unless the mouse is over the gutter.
  483. // * Defaults to 'mouseover'.
  484. // */
  485. // showFoldingControls?: 'always' | 'mouseover';
  486. // /**
  487. // * Controls whether clicking on the empty content after a folded line will unfold the line.
  488. // * Defaults to false.
  489. // */
  490. // unfoldOnClickAfterEndOfLine?: boolean;
  491. // /**
  492. // * Enable highlighting of matching brackets.
  493. // * Defaults to 'always'.
  494. // */
  495. // matchBrackets?: 'never' | 'near' | 'always';
  496. // /**
  497. // * Enable rendering of whitespace.
  498. // * Defaults to none.
  499. // */
  500. // renderWhitespace?: 'none' | 'boundary' | 'selection' | 'trailing' | 'all';
  501. // /**
  502. // * Enable rendering of control characters.
  503. // * Defaults to false.
  504. // */
  505. // renderControlCharacters?: boolean;
  506. // /**
  507. // * Enable rendering of indent guides.
  508. // * Defaults to true.
  509. // */
  510. // renderIndentGuides?: boolean;
  511. // /**
  512. // * Enable highlighting of the active indent guide.
  513. // * Defaults to true.
  514. // */
  515. // highlightActiveIndentGuide?: boolean;
  516. // /**
  517. // * Enable rendering of current line highlight.
  518. // * Defaults to all.
  519. // */
  520. // renderLineHighlight?: 'none' | 'gutter' | 'line' | 'all';
  521. // /**
  522. // * Control if the current line highlight should be rendered only the editor is focused.
  523. // * Defaults to false.
  524. // */
  525. // renderLineHighlightOnlyWhenFocus?: boolean;
  526. // /**
  527. // * Inserting and deleting whitespace follows tab stops.
  528. // */
  529. // useTabStops?: boolean;
  530. // /**
  531. // * The font family
  532. // */
  533. // fontFamily?: string;
  534. // /**
  535. // * The font weight
  536. // */
  537. // fontWeight?: string;
  538. // /**
  539. // * The font size
  540. // */
  541. // fontSize?: number;
  542. // /**
  543. // * The line height
  544. // */
  545. // lineHeight?: number;
  546. // /**
  547. // * The letter spacing
  548. // */
  549. // letterSpacing?: number;
  550. // /**
  551. // * Controls fading out of unused variables.
  552. // */
  553. // showUnused?: boolean;
  554. // /**
  555. // * Controls whether to focus the inline editor in the peek widget by default.
  556. // * Defaults to false.
  557. // */
  558. // peekWidgetDefaultFocus?: 'tree' | 'editor';
  559. // /**
  560. // * Controls whether the definition link opens element in the peek widget.
  561. // * Defaults to false.
  562. // */
  563. // definitionLinkOpensInPeek?: boolean;
  564. // /**
  565. // * Controls strikethrough deprecated variables.
  566. // */
  567. // showDeprecated?: boolean;
  568. /**
  569. * The number of spaces a tab is equal to.
  570. * This setting is overridden based on the file contents when `detectIndentation` is on.
  571. * Defaults to 4.
  572. */
  573. // tabSize?: number;
  574. /**
  575. * Insert spaces when pressing `Tab`.
  576. * This setting is overridden based on the file contents when `detectIndentation` is on.
  577. * Defaults to true.
  578. */
  579. // insertSpaces?: boolean;
  580. /**
  581. * Controls whether `tabSize` and `insertSpaces` will be automatically detected when a file is opened based on the file contents.
  582. * Defaults to true.
  583. */
  584. // detectIndentation?: boolean;
  585. /**
  586. * Remove trailing auto inserted whitespace.
  587. * Defaults to true.
  588. */
  589. // trimAutoWhitespace?: boolean;
  590. /**
  591. * Special handling for large files to disable certain memory intensive features.
  592. * Defaults to true.
  593. */
  594. // largeFileOptimizations?: boolean;
  595. /**
  596. * Controls whether completions should be computed based on words in the document.
  597. * Defaults to true.
  598. */
  599. // wordBasedSuggestions?: boolean;
  600. /**
  601. * Controls whether the semanticHighlighting is shown for the languages that support it.
  602. * true: semanticHighlighting is enabled for all themes
  603. * false: semanticHighlighting is disabled for all themes
  604. * 'configuredByTheme': semanticHighlighting is controlled by the current color theme's semanticHighlighting setting.
  605. * Defaults to 'byTheme'.
  606. */
  607. // 'semanticHighlighting.enabled'?: true | false | 'configuredByTheme';
  608. /**
  609. * Keep peek editors open even when double clicking their content or when hitting `Escape`.
  610. * Defaults to false.
  611. */
  612. // stablePeek?: boolean;
  613. /**
  614. * Lines above this length will not be tokenized for performance reasons.
  615. * Defaults to 20000.
  616. */
  617. // maxTokenizationLineLength?: number;
  618. }