Skip to content

Commit

Permalink
Add Zed support for Linux external editor options (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
MVDW-Java authored and shiftkey committed Jul 1, 2024
1 parent fc9a09e commit 471fb25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/src/lib/editors/linux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,14 @@ const editors: ILinuxExternalEditor[] = [
name: 'Pulsar',
paths: ['/usr/bin/pulsar'],
},
{
name: 'Pluma',
paths: ['/usr/bin/pluma'],
},
{
name: 'Zed',
paths: ['.local/bin/zed'],
},
]

async function getAvailablePath(paths: string[]): Promise<string | null> {
Expand Down
2 changes: 2 additions & 0 deletions docs/technical/editor-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,8 @@ These editors are currently supported:
- [JetBrains WebStorm](https://www.jetbrains.com/webstorm/)
- [Emacs](https://www.gnu.org/software/emacs/)
- [Pulsar](https://pulsar-edit.dev/)
- [Pluma](https://github.com/mate-desktop/pluma)
- [Zed](https://github.com/zed-industries/zed)

These are defined in a list at the top of the file:

Expand Down

0 comments on commit 471fb25

Please sign in to comment.