We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58e274 commit 9046831Copy full SHA for 9046831
src/App.tsx
@@ -135,11 +135,10 @@ const ConfirmModal: React.FC<ConfirmModalProps> = ({
135
const getCommonEditorOptions = (fontSize: number) => ({
136
minimap: { enabled: false },
137
fontSize: fontSize,
138
- wordWrap: 'on' as const,
+ wordWrap: 'off' as const,
139
automaticLayout: true,
140
scrollBeyondLastLine: false,
141
renderLineHighlight: 'none' as const,
142
- lineNumbers: 'off' as const,
143
lineNumbersMinChars: 0,
144
stickyScroll: { enabled: false },
145
hover: { enabled: false },
@@ -701,6 +700,7 @@ function App() {
701
700
...getCommonEditorOptions(fontSize),
702
folding: false,
703
showFoldingControls: 'never',
+ lineNumbers: 'off',
704
}}
705
/>
706
</div>
0 commit comments