mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Add support for zed
This commit is contained in:
parent
53c36cd4c2
commit
ac07f21fd4
1 changed files with 6 additions and 2 deletions
|
@ -78,6 +78,10 @@ public interface ExternalEditorType extends PrefsChoiceValue {
|
||||||
|
|
||||||
LinuxPathType VSCODE_LINUX = new LinuxPathType("app.vscode", "code");
|
LinuxPathType VSCODE_LINUX = new LinuxPathType("app.vscode", "code");
|
||||||
|
|
||||||
|
LinuxPathType ZED_LINUX = new LinuxPathType("app.zed", "zed");
|
||||||
|
|
||||||
|
ExternalEditorType ZED_MACOS = new MacOsEditor("app.zed", "Zed");
|
||||||
|
|
||||||
LinuxPathType VSCODIUM_LINUX = new LinuxPathType("app.vscodium", "codium");
|
LinuxPathType VSCODIUM_LINUX = new LinuxPathType("app.vscodium", "codium");
|
||||||
|
|
||||||
LinuxPathType GNOME = new LinuxPathType("app.gnomeTextEditor", "gnome-text-editor");
|
LinuxPathType GNOME = new LinuxPathType("app.gnomeTextEditor", "gnome-text-editor");
|
||||||
|
@ -124,8 +128,8 @@ public interface ExternalEditorType extends PrefsChoiceValue {
|
||||||
List<ExternalEditorType> WINDOWS_EDITORS =
|
List<ExternalEditorType> WINDOWS_EDITORS =
|
||||||
List.of(VSCODIUM_WINDOWS, VSCODE_INSIDERS_WINDOWS, VSCODE_WINDOWS, NOTEPADPLUSPLUS, NOTEPAD);
|
List.of(VSCODIUM_WINDOWS, VSCODE_INSIDERS_WINDOWS, VSCODE_WINDOWS, NOTEPADPLUSPLUS, NOTEPAD);
|
||||||
List<LinuxPathType> LINUX_EDITORS =
|
List<LinuxPathType> LINUX_EDITORS =
|
||||||
List.of(VSCODIUM_LINUX, VSCODE_LINUX, KATE, GEDIT, PLUMA, LEAFPAD, MOUSEPAD, GNOME);
|
List.of(VSCODIUM_LINUX, VSCODE_LINUX, ZED_LINUX, KATE, GEDIT, PLUMA, LEAFPAD, MOUSEPAD, GNOME);
|
||||||
List<ExternalEditorType> MACOS_EDITORS = List.of(BBEDIT, VSCODIUM_MACOS, VSCODE_MACOS, SUBLIME_MACOS, TEXT_EDIT);
|
List<ExternalEditorType> MACOS_EDITORS = List.of(BBEDIT, VSCODIUM_MACOS, VSCODE_MACOS, SUBLIME_MACOS, ZED_MACOS, TEXT_EDIT);
|
||||||
List<ExternalEditorType> CROSS_PLATFORM_EDITORS = List.of(FLEET, INTELLIJ, PYCHARM, WEBSTORM, CLION);
|
List<ExternalEditorType> CROSS_PLATFORM_EDITORS = List.of(FLEET, INTELLIJ, PYCHARM, WEBSTORM, CLION);
|
||||||
|
|
||||||
@SuppressWarnings("TrivialFunctionalExpressionUsage")
|
@SuppressWarnings("TrivialFunctionalExpressionUsage")
|
||||||
|
|
Loading…
Reference in a new issue