You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new config: app:hideaibutton, app:disablectrlshiftarrows, app:disablectrlshiftdisplay (#2850)
| app:hideaibutton <VersionBadge version="v0.14" /> | bool | Set to true
to hide the AI button in the tab bar (defaults to false) |
| app:disablectrlshiftarrows <VersionBadge version="v0.14" /> | bool |
Set to true to disable Ctrl+Shift+Arrow keybindings for block navigation
(defaults to false) |
| app:disablectrlshiftdisplay <VersionBadge version="v0.14" /> | bool |
Set to true to disable the Ctrl+Shift visual indicator display (defaults
to false) |
Copy file name to clipboardExpand all lines: docs/docs/config.mdx
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,9 @@ wsh editconfig
40
40
| app:showoverlayblocknums | bool | Set to false to disable the Ctrl+Shift block number overlay that appears when holding Ctrl+Shift (defaults to true) |
41
41
| app:ctrlvpaste | bool | On Windows/Linux, when null (default) uses Control+V on Windows only. Set to true to force Control+V on all non-macOS platforms, false to disable the accelerator. macOS always uses Command+V regardless of this setting |
42
42
| app:confirmquit <VersionBadgeversion="v0.14" /> | bool | Set to false to disable the quit confirmation dialog when closing Wave Terminal (defaults to true, requires app restart) |
43
+
| app:hideaibutton <VersionBadgeversion="v0.14" /> | bool | Set to true to hide the AI button in the tab bar (defaults to false) |
44
+
| app:disablectrlshiftarrows <VersionBadgeversion="v0.14" /> | bool | Set to true to disable Ctrl+Shift+Arrow keybindings for block navigation (defaults to false) |
45
+
| app:disablectrlshiftdisplay <VersionBadgeversion="v0.14" /> | bool | Set to true to disable the Ctrl+Shift visual indicator display (defaults to false) |
43
46
| ai:preset | string | the default AI preset to use |
44
47
| ai:baseurl | string | Set the AI Base Url (must be OpenAI compatible) |
45
48
| ai:apitoken | string | your AI api token |
@@ -67,7 +70,7 @@ wsh editconfig
67
70
| term:macoptionismeta | bool | on macOS, treat the Option key as Meta key for terminal keybindings (default false) |
68
71
| term:bellsound <VersionBadgeversion="v0.14" /> | bool | when enabled, plays the system beep sound when the terminal bell (BEL character) is received (default false) |
69
72
| term:bellindicator <VersionBadgeversion="v0.14" /> | bool | when enabled, shows a visual indicator in the tab when the terminal bell is received (default false) |
70
-
| term:durable <VersionBadgeversion="v0.14" /> | bool | makes remote terminal sessions durable across network disconnects (defaults to true) |
73
+
| term:durable <VersionBadgeversion="v0.14" /> | bool | makes remote terminal sessions durable across network disconnects (defaults to false) |
71
74
| editor:minimapenabled | bool | set to false to disable editor minimap |
72
75
| editor:stickyscrollenabled | bool | enables monaco editor's stickyScroll feature (pinning headers of current context, e.g. class names, method names, etc.), defaults to false |
73
76
| editor:wordwrap | bool | set to true to enable word wrapping in the editor (defaults to false) |
@@ -99,12 +102,13 @@ wsh editconfig
99
102
| window:showmenubar | bool | set to use the OS-native menu bar (Windows and Linux only, requires app restart) |
100
103
| window:nativetitlebar | bool | set to use the OS-native title bar, rather than the overlay (Windows and Linux only, requires app restart) |
101
104
| window:disablehardwareacceleration | bool | set to disable Chromium hardware acceleration to resolve graphical bugs (requires app restart) |
105
+
| window:fullscreenonlaunch | bool | set to true to launch the foreground window in fullscreen mode (defaults to false) |
102
106
| window:savelastwindow | bool | when `true`, the last window that is closed is preserved and is reopened the next time the app is launched (defaults to `true`) |
103
107
| window:confirmonclose | bool | when `true`, a prompt will ask a user to confirm that they want to close a window if it has an unsaved workspace with more than one tab (defaults to `true`) |
104
108
| window:dimensions | string | set the default dimensions for new windows using the format "WIDTHxHEIGHT" (e.g. "1920x1080"). when a new window is created, these dimensions will be automatically applied. The width and height values should be specified in pixels. |
105
109
| telemetry:enabled | bool | set to enable/disable telemetry |
106
110
107
-
For reference, this is the current default configuration (v0.11.5):
111
+
For reference, this is the current default configuration (v0.14.0):
108
112
109
113
```json
110
114
{
@@ -114,6 +118,9 @@ For reference, this is the current default configuration (v0.11.5):
114
118
"ai:timeoutms": 60000,
115
119
"app:defaultnewblock": "term",
116
120
"app:confirmquit": true,
121
+
"app:hideaibutton": false,
122
+
"app:disablectrlshiftarrows": false,
123
+
"app:disablectrlshiftdisplay": false,
117
124
"autoupdate:enabled": true,
118
125
"autoupdate:installonquit": true,
119
126
"autoupdate:intervalms": 3600000,
@@ -128,14 +135,15 @@ For reference, this is the current default configuration (v0.11.5):
0 commit comments