From 123a414f9ac1629cc41a14621c7fca226bd3f5f3 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Wed, 26 Feb 2025 09:15:58 -0500 Subject: [PATCH] Support Linux path --- package.json | 6 ++++-- src/index.ts | 10 ++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index f4ec309..5fc3a9e 100644 --- a/package.json +++ b/package.json @@ -37,10 +37,12 @@ { "path": "$EXTENSION/deno-src/index.ts", "read": [ - "$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite" + "$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite", + "$HOME/.local/share/zed/db/0-stable/db.sqlite" ], "write": [ - "$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite" + "$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite", + "$HOME/.local/share/zed/db/0-stable/db.sqlite" ] } ] diff --git a/src/index.ts b/src/index.ts index 555a0ef..0b546e8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ async function getDbPath() { "Library/Application Support/Zed/db/0-stable/db.sqlite" ); } else if (platform === "linux") { - return await path.join(homePath, ".config/zed/db/0-stable/db.sqlite"); + return await path.join(homePath, ".local/share/zed/db/0-stable/db.sqlite"); } else if (platform === "windows") { return await path.join(homePath, "AppData/Local/Zed/db/0-stable/db.sqlite"); } else { @@ -83,7 +83,7 @@ function openWithZed(path: string) { } class ExtensionTemplate extends TemplateUiCommand { - load() { + async load() { ui.setSearchBarPlaceholder( "Enter a search term, and press enter to search" ); @@ -92,6 +92,12 @@ class ExtensionTemplate extends TemplateUiCommand { items: [], }) ); + const platform = await os.platform(); + if (platform === "windows") { + toast.error("Windows platform is not supported yet"); + return ui.goBack(); + } + return getRecentProjects() .then(async (projects) => { // filter out non-existent projects