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

Allow text files to be edited even when empty #1724

2 changes: 1 addition & 1 deletion CodeEdit/Features/Editor/Views/EditorAreaFileView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct EditorAreaFileView: View {
@ViewBuilder var editorAreaFileView: some View {
if let document = file.fileDocument {

if let utType = document.utType, utType.conforms(to: .text) {
if let fileURL = document.fileURL, (try? String(contentsOf: fileURL)) != nil {
plbstl marked this conversation as resolved.
Show resolved Hide resolved
CodeFileView(codeFile: document, textViewCoordinators: textViewCoordinators)
} else {
NonTextFileView(fileDocument: document)
Expand Down
Loading