Adapt Befunge to modify code, fix char rendering

This commit is contained in:
Nilay Majorwar
2022-01-26 20:03:06 +05:30
parent 7b7475a4fb
commit 35bebf045f
3 changed files with 78 additions and 6 deletions

View File

@ -154,6 +154,9 @@ const CodeEditorComponent = (props: Props, ref: React.Ref<CodeEditorRef>) => {
minimap: { enabled: false },
glyphMargin: true,
readOnly: readOnly,
// Self-modifying programs may add control characters to the code.
// This option ensures such characters are properly displayed.
renderControlCharacters: true,
}}
/>
);