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: website/guide/editor-integration.md
+16
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
1
# Editor Integration
2
2
3
+
## VSCode
4
+
5
+
We have a preview version of [VSCode extension](https://marketplace.visualstudio.com/items?itemName=ast-grep.ast-grep-vscode&ssr=false#overview) in the market place.
6
+
3
7
4
8
## Neovim
5
9
10
+
### nvim-lspconfig
11
+
6
12
The recommended setup is using [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig).
7
13
8
14
```lua
@@ -16,3 +22,13 @@ configs.ast_grep = {
16
22
};
17
23
}
18
24
```
25
+
26
+
### coc.nvim
27
+
28
+
Please see [coc-ast-grep](https://github.com/yaegassy/coc-ast-grep)
29
+
30
+
You need to have coc.nvim installed for this extension to work. e.g. vim-plug:
0 commit comments