gitextract_lq_yxf02/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report_issue_template.md │ │ └── feature_request_issue_template.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── OpenInEditor-Lite/ │ ├── OpenInEditor-Lite/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Error.swift │ │ ├── Info.plist │ │ ├── OpenInEditor-Lite.entitlements │ │ ├── OpenInEditor_Lite.entitlements │ │ ├── de.lproj/ │ │ │ └── Localizable.strings │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ ├── fr.lproj/ │ │ │ └── Localizable.strings │ │ ├── it.lproj/ │ │ │ └── Localizable.strings │ │ ├── ko.lproj/ │ │ │ └── Localizable.strings │ │ ├── main.swift │ │ ├── ru.lproj/ │ │ │ └── Localizable.strings │ │ ├── tr.lproj/ │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj/ │ │ └── Localizable.strings │ └── OpenInEditor-Lite.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── OpenInEditor-Lite.xcscheme ├── OpenInTerminal/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── StatusBarIcon.imageset/ │ │ │ └── Contents.json │ │ ├── ToolbarCustomize.imageset/ │ │ │ └── Contents.json │ │ └── logo.imageset/ │ │ └── Contents.json │ ├── Constants.swift │ ├── Error.swift │ ├── Icons.xcassets/ │ │ ├── Alacritty.imageset/ │ │ │ └── Contents.json │ │ ├── Android Studio.imageset/ │ │ │ └── Contents.json │ │ ├── AppCode.imageset/ │ │ │ └── Contents.json │ │ ├── Atom.imageset/ │ │ │ └── Contents.json │ │ ├── BBEdit.imageset/ │ │ │ └── Contents.json │ │ ├── CLion.imageset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── CotEditor.imageset/ │ │ │ └── Contents.json │ │ ├── Cursor.imageset/ │ │ │ └── Contents.json │ │ ├── Fleet.imageset/ │ │ │ └── Contents.json │ │ ├── Fork.imageset/ │ │ │ └── Contents.json │ │ ├── Ghostty.imageset/ │ │ │ └── Contents.json │ │ ├── GitHub Desktop.imageset/ │ │ │ └── Contents.json │ │ ├── GoLand.imageset/ │ │ │ └── Contents.json │ │ ├── IntelliJ IDEA.imageset/ │ │ │ └── Contents.json │ │ ├── MacVim.imageset/ │ │ │ └── Contents.json │ │ ├── Nova.imageset/ │ │ │ └── Contents.json │ │ ├── PhpStorm.imageset/ │ │ │ └── Contents.json │ │ ├── PyCharm.imageset/ │ │ │ └── Contents.json │ │ ├── RubyMine.imageset/ │ │ │ └── Contents.json │ │ ├── Sublime Text.imageset/ │ │ │ └── Contents.json │ │ ├── Tabby.imageset/ │ │ │ └── Contents.json │ │ ├── Terminal.imageset/ │ │ │ └── Contents.json │ │ ├── TextEdit.imageset/ │ │ │ └── Contents.json │ │ ├── TextMate.imageset/ │ │ │ └── Contents.json │ │ ├── Typora.imageset/ │ │ │ └── Contents.json │ │ ├── VSCodium.imageset/ │ │ │ └── Contents.json │ │ ├── Visual Studio Code - Insiders.imageset/ │ │ │ └── Contents.json │ │ ├── Visual Studio Code.imageset/ │ │ │ └── Contents.json │ │ ├── Warp.imageset/ │ │ │ └── Contents.json │ │ ├── WebStorm.imageset/ │ │ │ └── Contents.json │ │ ├── WezTerm.imageset/ │ │ │ └── Contents.json │ │ ├── Xcode.imageset/ │ │ │ └── Contents.json │ │ ├── Zed.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_color_editor.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_color_path.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_color_terminal.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_editor.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_path.imageset/ │ │ │ └── Contents.json │ │ ├── context_menu_icon_terminal.imageset/ │ │ │ └── Contents.json │ │ ├── hyper.imageset/ │ │ │ └── Contents.json │ │ ├── iTerm.imageset/ │ │ │ └── Contents.json │ │ ├── kitty.imageset/ │ │ │ └── Contents.json │ │ └── neovim.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── MainMenu.xib │ ├── Notifier/ │ │ ├── LaunchNotifier.swift │ │ ├── Notifier.swift │ │ └── OpenNotifier.swift │ ├── OpenInTerminal.entitlements │ ├── PreferencesWindow/ │ │ ├── AboutPreferencesViewController.swift │ │ ├── AdvancedPreferencesViewController.swift │ │ ├── Base.lproj/ │ │ │ └── Preferences.storyboard │ │ ├── CustomInputViewController.swift │ │ ├── CustomPreferencesViewController.swift │ │ ├── GeneralPreferencesViewController.swift │ │ ├── PreferencesViewController.swift │ │ ├── PreferencesWindowController.swift │ │ ├── de.lproj/ │ │ │ └── Preferences.strings │ │ ├── en.lproj/ │ │ │ └── Preferences.strings │ │ ├── es.lproj/ │ │ │ └── Preferences.strings │ │ ├── fr.lproj/ │ │ │ └── Preferences.strings │ │ ├── it.lproj/ │ │ │ └── Preferences.strings │ │ ├── ko.lproj/ │ │ │ └── Preferences.strings │ │ ├── mul.lproj/ │ │ │ └── Preferences.xcstrings │ │ ├── ru.lproj/ │ │ │ └── Preferences.strings │ │ ├── tr.lproj/ │ │ │ └── Preferences.strings │ │ └── zh-Hans.lproj/ │ │ └── Preferences.strings │ ├── ScriptGenerator.swift │ ├── StatusMenuController.swift │ ├── de.lproj/ │ │ └── Localizable.strings │ ├── en.lproj/ │ │ └── Localizable.strings │ ├── es.lproj/ │ │ └── Localizable.strings │ ├── fr.lproj/ │ │ └── Localizable.strings │ ├── it.lproj/ │ │ └── Localizable.strings │ ├── ko.lproj/ │ │ └── Localizable.strings │ ├── ru.lproj/ │ │ └── Localizable.strings │ ├── tr.lproj/ │ │ └── Localizable.strings │ └── zh-Hans.lproj/ │ └── Localizable.strings ├── OpenInTerminal-Lite/ │ ├── OpenInTerminal-Lite/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Error.swift │ │ ├── Info.plist │ │ ├── OpenInTerminal-Lite.entitlements │ │ ├── OpenInTerminal_Lite.entitlements │ │ ├── de.lproj/ │ │ │ └── Localizable.strings │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ ├── fr.lproj/ │ │ │ └── Localizable.strings │ │ ├── it.lproj/ │ │ │ └── Localizable.strings │ │ ├── ko.lproj/ │ │ │ └── Localizable.strings │ │ ├── main.swift │ │ ├── ru.lproj/ │ │ │ └── Localizable.strings │ │ ├── tr.lproj/ │ │ │ └── Localizable.strings │ │ └── zh-Hans.lproj/ │ │ └── Localizable.strings │ └── OpenInTerminal-Lite.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── OpenInTerminal-Lite.xcscheme ├── OpenInTerminal.xcodeproj/ │ └── project.pbxproj ├── OpenInTerminalCore/ │ ├── App.swift │ ├── AppManager.swift │ ├── Constants.swift │ ├── Defaults.swift │ ├── DefaultsManager.swift │ ├── Error.swift │ ├── Extensions/ │ │ ├── ArrayExtensions.swift │ │ └── PathExtensions.swift │ ├── FinderManager.swift │ ├── Info.plist │ ├── Log.swift │ ├── OpenInTerminalCore.h │ ├── ScriptManager.swift │ ├── ScriptingBridge/ │ │ ├── Finder.swift │ │ └── Terminal.swift │ └── SupportedApps.swift ├── OpenInTerminalFinderExtension/ │ ├── FinderAssets.xcassets/ │ │ ├── Contents.json │ │ └── Icon.imageset/ │ │ └── Contents.json │ ├── FinderSync.swift │ ├── Info.plist │ └── OpenInTerminalFinderExtension.entitlements ├── OpenInTerminalHelper/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── Info.plist │ └── OpenInTerminalHelper.entitlements ├── README.md └── Resources/ ├── README-Config-zh.md ├── README-Config.md ├── README-Lite-de.md ├── README-Lite-zh.md ├── README-Lite.md ├── README-de.md ├── README-tr.md └── README-zh.md