Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add new image and updated settings #1959

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/modules/ROOT/images/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 36 additions & 8 deletions docs/modules/ROOT/pages/operations/browser-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To view all currently configured settings, run `:config`.
[source, shell, role=noheader]
----
{
"maxHistory": 20,
"maxHistory": 30,
"theme": "auto",
"initCmd": ":play start",
"playImplicitInitCommands": true,
Expand All @@ -29,16 +29,23 @@ To view all currently configured settings, run `:config`.
"browserSyncDebugServer": null,
"maxRows": 1000,
"maxFieldItems": 500,
"shouldReportUdc": true,
"autoComplete": true,
"scrollToTop": true,
"maxFrames": 30,
"codeFontLigatures": true,
"useBoltRouting": false,
"editorLint": false,
"enableMultiStatementMode": true,
"enableMultiStatementMode": false,
"connectionTimeout": 30000,
"showPerformanceOverlay": false
"showPerformanceOverlay": false,
"allowCrashReports": true,
"allowUserStats": true,
"showWheelZoomInfo": true,
"useReadTransactions": false,
"useCypherThread": true,
"shouldReportUdc": true,
"cmdchar": ":",
"editorAutocomplete": true
}
----
====
Expand Down Expand Up @@ -106,10 +113,6 @@ Possible values: `auto`, `normal`, `outline`, and `dark`.
For example, if a node has 1000 labels, the list will be cut off to the value set in `maxFieldItems`.
| no

| `shouldReportUdc`
| `true`
| Report less user metrics (user data collection).
| no

| `autoComplete`
| `true`
Expand Down Expand Up @@ -161,6 +164,31 @@ The Bolt+routing feature on Neo4j drivers discovers a cluster member (drivers ha
| Internal setting, used for showing a performance overlay (FPS and memory usage).
| no

| `allowCrashReports`
| `true`
| Allow crash reports to be sent, can be changed from Desktop.
| no

| `allowUserStats`
| `true`
| Allow product usage statistics to be sent, can be changed from Desktop
| no

| `showWheelZoomInfo`
| `true`
| Show zoom interactions hint.
| yes

| `useReadTransactions`
| `false`
| Use only read transactions for Cypher queries, preventing writing to the database.
| yes

| `shouldReportUdc`
| `true`
| Report less user metrics (user data collection).
| no

| `editorAutocomplete`
| `true`
| Trigger autocomplete when typing.
Expand Down
Loading