Skip to content

Commit 26f1115

Browse files
committed
feat(devin-lang): add support for DevIn Language in kover and update documentation
#101 This commit introduces support for the DevIn Language in the kover task and updates the documentation to reflect the latest changes. The DevIn Language is a new input language designed to improve the completion experience for special characters such as `@`, `/`, `#`, `$`, and `!`. This commit also updates the documentation to version 1.7.2 and includes an example of how to use the DevIn Language in code.
1 parent 9443239 commit 26f1115

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ project(":") {
437437

438438
kover(project(":exts:database"))
439439
kover(project(":exts:ext-android"))
440+
kover(project(":exts:devin-lang"))
440441
}
441442

442443
task("resolveDependencies") {

docs/development/devin-agent-language.md renamed to docs/development/devin-language.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
layout: default
3-
title: DevIn Agent Language
3+
title: DevIn Language
44
nav_order: 4
55
parent: Development
66
---
77

8-
8+
99
{: .label .label-yellow }
1010

11-
# DevIn Input Language
11+
# DevIn Language
1212

13-
In issue [#101](https://github.com/unit-mesh/auto-dev/issues/101),
14-
in order to make `@`, `/`, `#`, `$` and `!` completion better, we introduce a new input language: DevIn.
13+
In issue [#101](https://github.com/unit-mesh/auto-dev/issues/101), to better interactive with LLM, and also
14+
handle `@`, `/`, `#`, `$` and `!` completion better, we introduce a new language: DevIn.
1515

1616
Code: [DevIn Language](https://github.com/unit-mesh/auto-dev/tree/master/exts/devin-lang)
1717

@@ -46,12 +46,9 @@ code_contents ::= (NEWLINE | CODE_CONTENT)*
4646
### AutoCRUD
4747

4848
```devin
49-
@create /file:src/main/java/com/example/Controller.java
49+
Explain code /file:src/main/java/com/example/Controller.java
5050
```
5151

52-
```devin
53-
/file:regex("*.Controller")
54-
```typescript jsx
5552

5653
```
5754
/edit /file:src/main/java/com/example/Controller.java#L1-L12

0 commit comments

Comments
 (0)