diff --git a/.gitignore b/.gitignore index 95c2506ba..0bd55ef7f 100644 --- a/.gitignore +++ b/.gitignore @@ -12,10 +12,6 @@ vecid-to-indexes.js # Ignored _* -# Editors -.vscode -.zed - # Logs .log diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 000000000..524ee233c --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,20 @@ +{ + "file_scan_exclusions": [ + // default + "**/.git", + "**/.svn", + "**/.hg", + "**/.jj", + "**/CVS", + "**/.DS_Store", + "**/Thumbs.db", + "**/.classpath", + "**/.settings", + // custom + "**/lean-qr/*/index.mjs", + "uFuzzy.mjs", + "lightweight-charts.standalone.production.mjs", + "**/modern-screenshot/*/index.mjs", + "**/solidjs-signals/*/dist/prod.js" + ] +} diff --git a/websites/bitview/packages/modern-screenshot/wrapper.js b/websites/bitview/packages/modern-screenshot/wrapper.js index c5272b989..eb562a67a 100644 --- a/websites/bitview/packages/modern-screenshot/wrapper.js +++ b/websites/bitview/packages/modern-screenshot/wrapper.js @@ -24,7 +24,7 @@ export async function screenshot({ element, name, title, env }) { try { await navigator.share({ files: [file], - title: `Bitview screenshot: ${title}`, + title: `${title} on ${window.document.location.hostname}`, }); return; } catch (err) {