mirror of
https://github.com/kunkunsh/kunkun-ext-zed.git
synced 2025-04-04 10:16:44 +00:00
Support Linux path
This commit is contained in:
parent
34aa7dd5f2
commit
123a414f9a
@ -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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
10
src/index.ts
10
src/index.ts
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user