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 cec6287 commit 02ff95fCopy full SHA for 02ff95f
1 file changed
CodeEdit/Features/NavigatorArea/ProjectNavigator/OutlineView/ProjectNavigatorMenuActions.swift
@@ -90,6 +90,7 @@ extension ProjectNavigatorMenu {
90
if let newFile = try workspace?.workspaceFileManager?.addFile(fileName: "untitled", toFile: item) {
91
workspace?.listenerModel.highlightedFileItem = newFile
92
workspace?.editorManager?.openTab(item: newFile)
93
+ renameFile()
94
}
95
} catch {
96
let alert = NSAlert(error: error)
@@ -147,6 +148,7 @@ extension ProjectNavigatorMenu {
147
148
do {
149
if let newFolder = try workspace?.workspaceFileManager?.addFolder(folderName: "untitled", toFile: item) {
150
workspace?.listenerModel.highlightedFileItem = newFolder
151
152
153
154
0 commit comments