We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e77a4a commit 5b114a8Copy full SHA for 5b114a8
app/terminal/editor.tsx
@@ -146,8 +146,9 @@ export function EditorComponent(props: EditorProps) {
146
className="font-mono!" // Aceのデフォルトフォントを上書き
147
readOnly={props.readonly}
148
fontSize={fontSize}
149
- enableBasicAutocompletion={true}
150
- enableLiveAutocompletion={true}
+ showPrintMargin={false}
+ enableBasicAutocompletion={false}
151
+ enableLiveAutocompletion={false}
152
enableSnippets={false}
153
value={code}
154
onChange={(code: string) => writeFile({ [props.filename]: code })}
0 commit comments