Support Linux path

This commit is contained in:
Huakun Shen 2025-02-26 09:15:58 -05:00
parent 34aa7dd5f2
commit 123a414f9a
2 changed files with 12 additions and 4 deletions

View File

@ -37,10 +37,12 @@
{ {
"path": "$EXTENSION/deno-src/index.ts", "path": "$EXTENSION/deno-src/index.ts",
"read": [ "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": [ "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"
] ]
} }
] ]

View File

@ -22,7 +22,7 @@ async function getDbPath() {
"Library/Application Support/Zed/db/0-stable/db.sqlite" "Library/Application Support/Zed/db/0-stable/db.sqlite"
); );
} else if (platform === "linux") { } 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") { } else if (platform === "windows") {
return await path.join(homePath, "AppData/Local/Zed/db/0-stable/db.sqlite"); return await path.join(homePath, "AppData/Local/Zed/db/0-stable/db.sqlite");
} else { } else {
@ -83,7 +83,7 @@ function openWithZed(path: string) {
} }
class ExtensionTemplate extends TemplateUiCommand { class ExtensionTemplate extends TemplateUiCommand {
load() { async load() {
ui.setSearchBarPlaceholder( ui.setSearchBarPlaceholder(
"Enter a search term, and press enter to search" "Enter a search term, and press enter to search"
); );
@ -92,6 +92,12 @@ class ExtensionTemplate extends TemplateUiCommand {
items: [], items: [],
}) })
); );
const platform = await os.platform();
if (platform === "windows") {
toast.error("Windows platform is not supported yet");
return ui.goBack();
}
return getRecentProjects() return getRecentProjects()
.then(async (projects) => { .then(async (projects) => {
// filter out non-existent projects // filter out non-existent projects