├── .gitignore ├── Config ├── nef-plugin │ ├── nef-plugin-appstore.xcconfig │ └── nef-plugin.xcconfig ├── nef │ ├── nef-appstore.xcconfig │ └── nef.xcconfig ├── project-appstore.xcconfig ├── project-shared.xcconfig └── project.xcconfig ├── LICENSE ├── README.md ├── Support Files └── en.lproj │ ├── Localizable.strings │ └── Localizable.stringsdict ├── assets ├── nef-brand-xcode-shadow.png ├── nef-plugin-about.png ├── nef-plugin-action-export.png ├── nef-plugin-action-imageclipboard.png ├── nef-plugin-action-imagefile.jpg ├── nef-plugin-extensions.png ├── nef-plugin-playgroundbook.png ├── nef-plugin-xcode.png ├── nef-xcode-preferences.png └── nef-xcode-shortcuts.png ├── nef-models ├── MenuEditorCommand+URLQueryItem.swift └── MenuEditorCommand.swift ├── nef-plugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── IDETemplateMacros.plist ├── nef-plugin ├── AppScheme.swift ├── EditorError.swift ├── EditorModel.swift ├── Extensions │ └── Bundle+Extensions.swift ├── SourceEditorCommand.swift ├── SourceEditorExtension.swift └── Support Files │ ├── Info.plist │ ├── nef-plugin-appstore.entitlements │ └── nef-plugin.entitlements ├── nef-utils ├── Browser.swift └── Reachability.swift └── nef ├── Algebras ├── Clipboard.swift └── Notifications.swift ├── App.swift ├── App ├── About │ ├── AboutView.swift │ ├── FixedToggle.swift │ └── InstallStepView.swift ├── PlaygroundBook │ ├── PlaygroundBookProgressReport.swift │ ├── PlaygroundBookView.swift │ └── ProgressView.swift ├── Preferences │ ├── Data │ │ ├── PreferencesDataSource.swift │ │ └── PreferencesModel.swift │ ├── PreferencesView.swift │ ├── ViewModels │ │ ├── ActionViewModel.swift │ │ └── PreferencesViewModel.swift │ └── Views │ │ ├── CarbonViewer.swift │ │ ├── CheckOptionView.swift │ │ ├── ColorOptionView.swift │ │ ├── Models │ │ └── OptionItem.swift │ │ ├── OutputFolderView.swift │ │ └── PickerOptionView.swift └── Theme │ ├── ImageButton.swift │ ├── LoadingView.swift │ └── SeparatorView.swift ├── AppDelegate+Notifications.swift ├── AppDelegate.swift ├── Assembler.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-1024.png │ ├── Icon-128.png │ ├── Icon-16.png │ ├── Icon-256.png │ ├── Icon-257.png │ ├── Icon-32.png │ ├── Icon-33.png │ ├── Icon-512.png │ ├── Icon-513.png │ └── Icon-64.png ├── Color │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── background-color.colorset │ │ └── Contents.json │ ├── panel-border-color.colorset │ │ └── Contents.json │ └── panel-color.colorset │ │ └── Contents.json ├── Contents.json ├── nef-favicon.imageset │ ├── @1x.png │ ├── @2x.png │ ├── @3x.png │ └── Contents.json ├── restore.imageset │ ├── Contents.json │ ├── iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (1).png │ ├── iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (2).png │ └── iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447.png ├── system-extensions.imageset │ ├── Contents.json │ └── nef-extensions.png └── system-preferences.imageset │ ├── Contents.json │ └── preferences@3x.png ├── Base.lproj └── Main.storyboard ├── Command.swift ├── Controllers ├── CarbonController.swift ├── ImageNotificationController.swift ├── MarkdownPageController.swift └── PlaygroundBookController.swift ├── Extensions ├── CarbonStyle+Color.swift ├── CarbonStyle+Model.swift ├── Data+IO.swift ├── Date+Extension.swift ├── DispatchTimeInterval+Extensions.swift ├── IO+unsafeRun.swift ├── NSView+Layout.swift ├── NSWindow+Extension.swift ├── Result+terminate.swift └── URL+Extension.swift ├── Instances ├── MacClipboard.swift └── MacNotifications.swift ├── Models ├── NefController.swift ├── NefNotification.swift ├── NefWindow.swift └── i18n.swift ├── Support Files ├── Info.plist ├── nef-appstore.entitlements └── nef.entitlements ├── Utils ├── Bookmark.swift ├── DispatchGroup.swift └── OpenPanel.swift ├── en.lproj └── Main.strings └── es.lproj └── Main.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/nef-plugin/nef-plugin-appstore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/nef-plugin/nef-plugin-appstore.xcconfig -------------------------------------------------------------------------------- /Config/nef-plugin/nef-plugin.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/nef-plugin/nef-plugin.xcconfig -------------------------------------------------------------------------------- /Config/nef/nef-appstore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/nef/nef-appstore.xcconfig -------------------------------------------------------------------------------- /Config/nef/nef.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/nef/nef.xcconfig -------------------------------------------------------------------------------- /Config/project-appstore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/project-appstore.xcconfig -------------------------------------------------------------------------------- /Config/project-shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/project-shared.xcconfig -------------------------------------------------------------------------------- /Config/project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Config/project.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Support Files/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Support Files/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Support Files/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/Support Files/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /assets/nef-brand-xcode-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-brand-xcode-shadow.png -------------------------------------------------------------------------------- /assets/nef-plugin-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-about.png -------------------------------------------------------------------------------- /assets/nef-plugin-action-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-action-export.png -------------------------------------------------------------------------------- /assets/nef-plugin-action-imageclipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-action-imageclipboard.png -------------------------------------------------------------------------------- /assets/nef-plugin-action-imagefile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-action-imagefile.jpg -------------------------------------------------------------------------------- /assets/nef-plugin-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-extensions.png -------------------------------------------------------------------------------- /assets/nef-plugin-playgroundbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-playgroundbook.png -------------------------------------------------------------------------------- /assets/nef-plugin-xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-plugin-xcode.png -------------------------------------------------------------------------------- /assets/nef-xcode-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-xcode-preferences.png -------------------------------------------------------------------------------- /assets/nef-xcode-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/assets/nef-xcode-shortcuts.png -------------------------------------------------------------------------------- /nef-models/MenuEditorCommand+URLQueryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-models/MenuEditorCommand+URLQueryItem.swift -------------------------------------------------------------------------------- /nef-models/MenuEditorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-models/MenuEditorCommand.swift -------------------------------------------------------------------------------- /nef-plugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /nef-plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /nef-plugin.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /nef-plugin/AppScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/AppScheme.swift -------------------------------------------------------------------------------- /nef-plugin/EditorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/EditorError.swift -------------------------------------------------------------------------------- /nef-plugin/EditorModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/EditorModel.swift -------------------------------------------------------------------------------- /nef-plugin/Extensions/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/Extensions/Bundle+Extensions.swift -------------------------------------------------------------------------------- /nef-plugin/SourceEditorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/SourceEditorCommand.swift -------------------------------------------------------------------------------- /nef-plugin/SourceEditorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/SourceEditorExtension.swift -------------------------------------------------------------------------------- /nef-plugin/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/Support Files/Info.plist -------------------------------------------------------------------------------- /nef-plugin/Support Files/nef-plugin-appstore.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/Support Files/nef-plugin-appstore.entitlements -------------------------------------------------------------------------------- /nef-plugin/Support Files/nef-plugin.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-plugin/Support Files/nef-plugin.entitlements -------------------------------------------------------------------------------- /nef-utils/Browser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-utils/Browser.swift -------------------------------------------------------------------------------- /nef-utils/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef-utils/Reachability.swift -------------------------------------------------------------------------------- /nef/Algebras/Clipboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Algebras/Clipboard.swift -------------------------------------------------------------------------------- /nef/Algebras/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Algebras/Notifications.swift -------------------------------------------------------------------------------- /nef/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App.swift -------------------------------------------------------------------------------- /nef/App/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/About/AboutView.swift -------------------------------------------------------------------------------- /nef/App/About/FixedToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/About/FixedToggle.swift -------------------------------------------------------------------------------- /nef/App/About/InstallStepView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/About/InstallStepView.swift -------------------------------------------------------------------------------- /nef/App/PlaygroundBook/PlaygroundBookProgressReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/PlaygroundBook/PlaygroundBookProgressReport.swift -------------------------------------------------------------------------------- /nef/App/PlaygroundBook/PlaygroundBookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/PlaygroundBook/PlaygroundBookView.swift -------------------------------------------------------------------------------- /nef/App/PlaygroundBook/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/PlaygroundBook/ProgressView.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Data/PreferencesDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Data/PreferencesDataSource.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Data/PreferencesModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Data/PreferencesModel.swift -------------------------------------------------------------------------------- /nef/App/Preferences/PreferencesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/PreferencesView.swift -------------------------------------------------------------------------------- /nef/App/Preferences/ViewModels/ActionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/ViewModels/ActionViewModel.swift -------------------------------------------------------------------------------- /nef/App/Preferences/ViewModels/PreferencesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/ViewModels/PreferencesViewModel.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/CarbonViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/CarbonViewer.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/CheckOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/CheckOptionView.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/ColorOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/ColorOptionView.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/Models/OptionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/Models/OptionItem.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/OutputFolderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/OutputFolderView.swift -------------------------------------------------------------------------------- /nef/App/Preferences/Views/PickerOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Preferences/Views/PickerOptionView.swift -------------------------------------------------------------------------------- /nef/App/Theme/ImageButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Theme/ImageButton.swift -------------------------------------------------------------------------------- /nef/App/Theme/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Theme/LoadingView.swift -------------------------------------------------------------------------------- /nef/App/Theme/SeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/App/Theme/SeparatorView.swift -------------------------------------------------------------------------------- /nef/AppDelegate+Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/AppDelegate+Notifications.swift -------------------------------------------------------------------------------- /nef/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/AppDelegate.swift -------------------------------------------------------------------------------- /nef/Assembler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assembler.swift -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-128.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-16.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-256.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-257.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-32.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-33.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-512.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-513.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/AppIcon.appiconset/Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/AppIcon.appiconset/Icon-64.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/Color/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Color/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/Color/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Color/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/Color/background-color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Color/background-color.colorset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/Color/panel-border-color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Color/panel-border-color.colorset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/Color/panel-color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Color/panel-color.colorset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/nef-favicon.imageset/@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/nef-favicon.imageset/@1x.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/nef-favicon.imageset/@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/nef-favicon.imageset/@2x.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/nef-favicon.imageset/@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/nef-favicon.imageset/@3x.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/nef-favicon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/nef-favicon.imageset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/restore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/restore.imageset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (1).png -------------------------------------------------------------------------------- /nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447 (2).png -------------------------------------------------------------------------------- /nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/restore.imageset/iconfinder__refresh_load_loading_sync_arrow_reload_restart_4213447.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/system-extensions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/system-extensions.imageset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/system-extensions.imageset/nef-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/system-extensions.imageset/nef-extensions.png -------------------------------------------------------------------------------- /nef/Assets.xcassets/system-preferences.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/system-preferences.imageset/Contents.json -------------------------------------------------------------------------------- /nef/Assets.xcassets/system-preferences.imageset/preferences@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Assets.xcassets/system-preferences.imageset/preferences@3x.png -------------------------------------------------------------------------------- /nef/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /nef/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Command.swift -------------------------------------------------------------------------------- /nef/Controllers/CarbonController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Controllers/CarbonController.swift -------------------------------------------------------------------------------- /nef/Controllers/ImageNotificationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Controllers/ImageNotificationController.swift -------------------------------------------------------------------------------- /nef/Controllers/MarkdownPageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Controllers/MarkdownPageController.swift -------------------------------------------------------------------------------- /nef/Controllers/PlaygroundBookController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Controllers/PlaygroundBookController.swift -------------------------------------------------------------------------------- /nef/Extensions/CarbonStyle+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/CarbonStyle+Color.swift -------------------------------------------------------------------------------- /nef/Extensions/CarbonStyle+Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/CarbonStyle+Model.swift -------------------------------------------------------------------------------- /nef/Extensions/Data+IO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/Data+IO.swift -------------------------------------------------------------------------------- /nef/Extensions/Date+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/Date+Extension.swift -------------------------------------------------------------------------------- /nef/Extensions/DispatchTimeInterval+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/DispatchTimeInterval+Extensions.swift -------------------------------------------------------------------------------- /nef/Extensions/IO+unsafeRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/IO+unsafeRun.swift -------------------------------------------------------------------------------- /nef/Extensions/NSView+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/NSView+Layout.swift -------------------------------------------------------------------------------- /nef/Extensions/NSWindow+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/NSWindow+Extension.swift -------------------------------------------------------------------------------- /nef/Extensions/Result+terminate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/Result+terminate.swift -------------------------------------------------------------------------------- /nef/Extensions/URL+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Extensions/URL+Extension.swift -------------------------------------------------------------------------------- /nef/Instances/MacClipboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Instances/MacClipboard.swift -------------------------------------------------------------------------------- /nef/Instances/MacNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Instances/MacNotifications.swift -------------------------------------------------------------------------------- /nef/Models/NefController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Models/NefController.swift -------------------------------------------------------------------------------- /nef/Models/NefNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Models/NefNotification.swift -------------------------------------------------------------------------------- /nef/Models/NefWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Models/NefWindow.swift -------------------------------------------------------------------------------- /nef/Models/i18n.swift: -------------------------------------------------------------------------------- 1 | // Copyright © 2020 The nef Authors. 2 | 3 | import Foundation 4 | 5 | enum i18n {} 6 | -------------------------------------------------------------------------------- /nef/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Support Files/Info.plist -------------------------------------------------------------------------------- /nef/Support Files/nef-appstore.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Support Files/nef-appstore.entitlements -------------------------------------------------------------------------------- /nef/Support Files/nef.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Support Files/nef.entitlements -------------------------------------------------------------------------------- /nef/Utils/Bookmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Utils/Bookmark.swift -------------------------------------------------------------------------------- /nef/Utils/DispatchGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Utils/DispatchGroup.swift -------------------------------------------------------------------------------- /nef/Utils/OpenPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/Utils/OpenPanel.swift -------------------------------------------------------------------------------- /nef/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/en.lproj/Main.strings -------------------------------------------------------------------------------- /nef/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef-plugin/HEAD/nef/es.lproj/Main.strings --------------------------------------------------------------------------------