mirror of
https://github.com/xpipe-io/xpipe.git
synced 2025-04-17 17:53:37 +00:00
Fixes for mac integration
This commit is contained in:
parent
e474b1b423
commit
b0b6199dd3
1 changed files with 2 additions and 2 deletions
|
@ -73,14 +73,14 @@ public abstract class ExternalEditorType implements PrefsChoiceValue {
|
|||
public static final ExternalEditorType TEXT_EDIT = new MacOsFullPathType("app.textEdit") {
|
||||
@Override
|
||||
protected Path determinePath() {
|
||||
return Path.of("/Applications/TextEdit.app");
|
||||
return Path.of("/System/Applications/TextEdit.app");
|
||||
}
|
||||
};
|
||||
|
||||
public static final ExternalEditorType NOTEPADPP_MACOS = new MacOsFullPathType("app.notepad++") {
|
||||
@Override
|
||||
protected Path determinePath() {
|
||||
return Path.of("/Applications/TextEdit.app");
|
||||
return Path.of("/Applications/Notepad++.app");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue