├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── Screenshots ├── Banner.png ├── demo.gif ├── s1.png ├── s2.png └── s3.png ├── XcodeWay.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── XcodeWayApp.xcscheme │ └── XcodeWayExtensions.xcscheme ├── XcodeWayApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128@1x.png │ │ ├── icon_128@2x.png │ │ ├── icon_16@1x.png │ │ ├── icon_16@2x.png │ │ ├── icon_256@1x.png │ │ ├── icon_256@2x.png │ │ ├── icon_32@1x.png │ │ ├── icon_32@2x.png │ │ ├── icon_512@1x.png │ │ └── icon_512@2x.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── XcodeWayApp.entitlements ├── XcodeWayExtensions ├── Helper │ ├── Helper.swift │ ├── MenuManager.swift │ └── ScriptRunner.swift ├── Info.plist ├── Navigator │ ├── AboutNavigator.swift │ ├── ArchivesFolderNavigator.swift │ ├── CodeSnippetFolderNavigator.swift │ ├── DerivedDataNavigator.swift │ ├── DeviceSupportFolderNavigator.swift │ ├── DocumentNavigator.swift │ ├── GitHubNavigator.swift │ ├── Navigator.swift │ ├── OpenFileInGitHubNavigator.swift │ ├── ProjectFolderNavigator.swift │ ├── ProvisioningProfileFolderNavigator.swift │ ├── TerminalNavigatorNavigator.swift │ └── ThemeFolderNavigator.swift ├── Script │ └── XcodeWayScript.scpt ├── SourceEditorCommand.swift ├── SourceEditorExtension.swift └── XcodeWayExtensions.entitlements └── install.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/Screenshots/Banner.png -------------------------------------------------------------------------------- /Screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/Screenshots/demo.gif -------------------------------------------------------------------------------- /Screenshots/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/Screenshots/s1.png -------------------------------------------------------------------------------- /Screenshots/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/Screenshots/s2.png -------------------------------------------------------------------------------- /Screenshots/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/Screenshots/s3.png -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayApp.xcscheme -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayExtensions.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayExtensions.xcscheme -------------------------------------------------------------------------------- /XcodeWayApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/AppDelegate.swift -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XcodeWayApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XcodeWayApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/Info.plist -------------------------------------------------------------------------------- /XcodeWayApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/ViewController.swift -------------------------------------------------------------------------------- /XcodeWayApp/XcodeWayApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayApp/XcodeWayApp.entitlements -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Helper/Helper.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/MenuManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Helper/MenuManager.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/ScriptRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Helper/ScriptRunner.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Info.plist -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/AboutNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/AboutNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ArchivesFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ArchivesFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/CodeSnippetFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/CodeSnippetFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DerivedDataNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DerivedDataNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DeviceSupportFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DeviceSupportFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DocumentNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DocumentNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/GitHubNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/GitHubNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/Navigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/Navigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/OpenFileInGitHubNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/OpenFileInGitHubNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ProjectFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ProjectFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ProvisioningProfileFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ProvisioningProfileFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/TerminalNavigatorNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/TerminalNavigatorNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ThemeFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ThemeFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Script/XcodeWayScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/Script/XcodeWayScript.scpt -------------------------------------------------------------------------------- /XcodeWayExtensions/SourceEditorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/SourceEditorCommand.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/SourceEditorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/SourceEditorExtension.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/XcodeWayExtensions.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/XcodeWayExtensions/XcodeWayExtensions.entitlements -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/XcodeWay/HEAD/install.sh --------------------------------------------------------------------------------