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: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,14 +54,29 @@ jobs:
54
54
- name: diffctx
55
55
uses: williamfzc/diffctx@v0.2.2
56
56
with:
57
-
# currently we support: golang/python
57
+
# currently we officially support: golang/python
58
58
lang: "golang"
59
59
```
60
60
61
61
### Done!
62
62
63
63
You can create a new PullRequest for test.
64
64
65
+
### What about other languages?
66
+
67
+
Currently, diffctx can also support java/kotlin.
68
+
But you have to generate LSIF file ([this link](https://github.com/williamfzc/diffctx/blob/main/index.py) might help) by yourself because of the complexity of the compilation process.
69
+
70
+
```yml
71
+
- name: diffctx
72
+
uses: williamfzc/diffctx@v0.2.2
73
+
with:
74
+
lang: "java"
75
+
lsif_file: "./dump.lsif"
76
+
```
77
+
78
+
Help wanted :)
79
+
65
80
### Still have a problem?
66
81
67
82
A real example can be found in: https://github.com/williamfzc/srctx/tree/test_diffctx
0 commit comments