Skip to content

Commit 2ae4769

Browse files
Update editor-integration.md
1 parent a20fa09 commit 2ae4769

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

website/guide/editor-integration.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Editor Integration
22

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+
37

48
## Neovim
59

10+
### nvim-lspconfig
11+
612
The recommended setup is using [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig).
713

814
```lua
@@ -16,3 +22,13 @@ configs.ast_grep = {
1622
};
1723
}
1824
```
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:
31+
32+
```
33+
Plug 'yaegassy/coc-ast-grep', {'do': 'yarn install --frozen-lockfile'}
34+
```

0 commit comments

Comments
 (0)