mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
The motivation for building search suggestions is two-fold: (1) to make the zoekt query language more approachable by presenting all available options to the user, and (2) make it easier for power-users to craft complex queries. The meat-n-potatoes of this change are concentrated in searchBar.tsx and searchSuggestionBox.tsx. The suggestions box works by maintaining a state-machine of "modes". By default, the box is in the refine mode, where suggestions for different prefixes (e.g., repo:, lang:, etc.) are suggested to the user. When one of these prefixes is matched, the state-machine transitions to the corresponding mode (e.g., repository, language, etc.) and surfaces suggestions for that mode (if any). The query is split up into parts by spaces " " (e.g., 'test repo:hello' -> ['test', 'repo:hello']). See splitQuery. The part that has the cursor over it is considered the active part. We evaluate which mode the state machine is in based on the active part. When a suggestion is clicked, we only modify the active part of the query. Three modes are currently missing suggestion data: file (file names), revision (branch / tag names), and symbol (symbol names). In future PRs, we will need to introduce endpoints into the backend to allow the frontend to fetch this data and surface it as suggestions..
22 lines
No EOL
511 B
JSON
22 lines
No EOL
511 B
JSON
{
|
|
"files.associations": {
|
|
"*.json": "jsonc",
|
|
"index.json": "json"
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"pattern": "./packages/*/"
|
|
}
|
|
],
|
|
// @see : https://cva.style/docs/getting-started/installation#intellisense
|
|
"tailwindCSS.experimental.classRegex": [
|
|
[
|
|
"cva\\(([^)]*)\\)",
|
|
"[\"'`]([^\"'`]*).*?[\"'`]"
|
|
],
|
|
[
|
|
"cx\\(([^)]*)\\)",
|
|
"(?:'|\"|`)([^']*)(?:'|\"|`)"
|
|
]
|
|
]
|
|
} |