@@ -19,7 +19,7 @@ To view all currently configured settings, run `:config`.
1919[source, shell, role=noheader]
2020----
2121{
22- "maxHistory": 20 ,
22+ "maxHistory": 30 ,
2323 "theme": "auto",
2424 "initCmd": ":play start",
2525 "playImplicitInitCommands": true,
@@ -29,16 +29,23 @@ To view all currently configured settings, run `:config`.
2929 "browserSyncDebugServer": null,
3030 "maxRows": 1000,
3131 "maxFieldItems": 500,
32- "shouldReportUdc": true,
3332 "autoComplete": true,
3433 "scrollToTop": true,
3534 "maxFrames": 30,
3635 "codeFontLigatures": true,
3736 "useBoltRouting": false,
3837 "editorLint": false,
39- "enableMultiStatementMode": true ,
38+ "enableMultiStatementMode": false ,
4039 "connectionTimeout": 30000,
41- "showPerformanceOverlay": false
40+ "showPerformanceOverlay": false,
41+ "allowCrashReports": true,
42+ "allowUserStats": true,
43+ "showWheelZoomInfo": true,
44+ "useReadTransactions": false,
45+ "useCypherThread": true,
46+ "shouldReportUdc": true,
47+ "cmdchar": ":",
48+ "editorAutocomplete": true
4249}
4350----
4451====
@@ -106,10 +113,6 @@ Possible values: `auto`, `normal`, `outline`, and `dark`.
106113For example, if a node has 1000 labels, the list will be cut off to the value set in `maxFieldItems`.
107114| no
108115
109- | `shouldReportUdc`
110- | `true`
111- | Report less user metrics (user data collection).
112- | no
113116
114117| `autoComplete`
115118| `true`
@@ -161,6 +164,31 @@ The Bolt+routing feature on Neo4j drivers discovers a cluster member (drivers ha
161164| Internal setting, used for showing a performance overlay (FPS and memory usage).
162165| no
163166
167+ | `allowCrashReports`
168+ | `true`
169+ | Allow crash reports to be sent, can be changed from Desktop.
170+ | no
171+
172+ | `allowUserStats`
173+ | `true`
174+ | Allow product usage statistics to be sent, can be changed from Desktop
175+ | no
176+
177+ | `showWheelZoomInfo`
178+ | `true`
179+ | Show zoom interactions hint.
180+ | yes
181+
182+ | `useReadTransactions`
183+ | `false`
184+ | Use only read transactions for Cypher queries, preventing writing to the database.
185+ | yes
186+
187+ | `shouldReportUdc`
188+ | `true`
189+ | Report less user metrics (user data collection).
190+ | no
191+
164192| `editorAutocomplete`
165193| `true`
166194| Trigger autocomplete when typing.
0 commit comments