You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vscode/README.md
+24-22Lines changed: 24 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ It matches code structurally which makes it excellent for more complex queries.
24
24
25
25
Query language offers wildcards, partial matching and ignores code formatting.
26
26
27
-
Structural search is available for JavaScript, TypesScript, HTML, CSS and more soon.
27
+
Structural code search is available for JavaScript, TypesScript, HTML, CSS and more soon.
28
28
29
-
Text search with handy wildcards is available for __every language__ and covers common regex search use cases.
29
+
Text code search with handy wildcards is available for __every language__ and covers common regex search use cases.
30
30
31
31
<palign="center"><ahref="https://codeque.co/playground"><b>Give it a try in
32
32
playground</b></a></p>
@@ -39,17 +39,18 @@ CodeQue is available as:
39
39
40
40
-[VSCode extension](https://marketplace.visualstudio.com/items?itemName=CodeQue.codeque) for enhanced code search and navigation experience.
41
41
-[ESLint integration](https://www.npmjs.com/package/@codeque/eslint-plugin) for creating custom linting rules in zero time.
42
-
-[CLI tool](https://www.npmjs.com/package/@codeque/cli) for searching code, creating git hooks and more.
42
+
-[CLI tool](https://www.npmjs.com/package/@codeque/cli) for searching code and more including headless environments.
43
43
44
44
CodeQue will be soon available as:
45
45
46
46
- Duplicated code identification
47
47
- Batch code refactoring
48
-
- Advanced ESLint rules generator
48
+
- Advanced ESLint rules creator
49
49
50
-
</br>
51
50
52
-
<palign="center"><ahref="https://codeque.co/playground"> 🔔 Get notified 🔔 </a></p>
51
+
<palign="center"><ahref="https://jayu.dev/newsletter"><b>🔔 Get notified 🔔 </b></a></p>
52
+
53
+
<palign="center"><i>All CodeQue tools <b>operate offline</b> hence code never leaves your local environment.</i></p>
53
54
54
55
</br>
55
56
@@ -58,13 +59,11 @@ CodeQue will be soon available as:
58
59
## CodeQue - multiline and structural code search for Visual Studio Code
59
60
VSCode extension aims to improve code search and navigation experience.
60
61
61
-
62
-
63
-
Advanced search options and todo-like list of accurate search results makes it your new super power.
62
+
Advanced code search options and todo-like list of accurate search results makes it your new super power.
64
63
65
64
CodeQue supports multiline code search for every programming language and structural code search for JavaScript and TypeScript.
66
65
67
-
Structural search support for other programming languages will be added soon.
66
+
Structural code search support for other programming languages will be added soon.
68
67
69
68
</br>
70
69
@@ -245,7 +244,7 @@ You can check search error details in tooltip available after click the error co
245
244
246
245
## Query examples
247
246
248
-
CodeQue is general purpose search tool. The examples list could be endless. Here are some of them for you to get a glimpse of what's possible. Those are relatively simple, you definitely would find some more complex during day to day work.
247
+
CodeQue is general purpose code search tool. The examples list could be endless. Here are some of them for you to get a glimpse of what's possible. Those are relatively simple, you definitely would find some more complex during day to day work.
249
248
250
249
> Don't know how to write a query? [Open an issue on GitHub](https://github.com/codeque-co/codeque/issues) !
251
250
@@ -281,7 +280,7 @@ More specifically it will match all objects with at least one address entry with
281
280
282
281
### React component with specific props combination
283
282
284
-
I found it very useful to find props with specific props combination. Sometimes props depends on each other and we might want to refactor some of them, but how do we determine whether they are used together? We can review long list of results for basic search, but who has time for that 😉
283
+
I found it very useful to find props with specific props combination. Sometimes props depends on each other and we might want to refactor some of them, but how do we determine whether they are used together? We can review long list of results for basic code search, but who has time for that 😉
285
284
286
285
```tsx
287
286
<Button
@@ -348,17 +347,20 @@ It's implemented using `@vscode/extension-telemetry` and respects you editor tel
348
347
349
348
Learn more about [telemetry](https://codeque.co/docs/telemetry#vs-code-extension)
0 commit comments