Skip to content

Commit 4a00772

Browse files
xiaochuanyuintellij-monorepo-bot
authored andcommitted
Fix missing comma in neovim TCP setup
As stated in title. GitOrigin-RevId: ccb733db24a644c8998468161af89ba7a7492603
1 parent 0d6224d commit 4a00772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/neovim.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Requires manual launch of language server
3535
2. Configure [nvim.lsp](https://neovim.io/doc/user/lsp.html) e.g:
3636
```lua
3737
{
38-
cmd = vim.lsp.rpc.connect('127.0.0.1', tonumber(9999))
38+
cmd = vim.lsp.rpc.connect('127.0.0.1', tonumber(9999)),
3939
single_file_support = true,
4040
filetypes = { "kotlin" },
4141
root_markers = { "build.gradle", "build.gradle.kts", "pom.xml" },

0 commit comments

Comments
 (0)