mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-25 09:48:10 -07:00
zed: add project settings to improve search
This commit is contained in:
@@ -12,10 +12,6 @@ vecid-to-indexes.js
|
|||||||
# Ignored
|
# Ignored
|
||||||
_*
|
_*
|
||||||
|
|
||||||
# Editors
|
|
||||||
.vscode
|
|
||||||
.zed
|
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
.log
|
.log
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -24,7 +24,7 @@ export async function screenshot({ element, name, title, env }) {
|
|||||||
try {
|
try {
|
||||||
await navigator.share({
|
await navigator.share({
|
||||||
files: [file],
|
files: [file],
|
||||||
title: `Bitview screenshot: ${title}`,
|
title: `${title} on ${window.document.location.hostname}`,
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|||||||
Reference in New Issue
Block a user