Skip to content

Commit

Permalink
docs: update server_configurations.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions[bot] committed Aug 7, 2024
1 parent 462b1d8 commit 652386d
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
33 changes: 33 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [tsserver](#tsserver)
- [ttags](#ttags)
- [turtle_ls](#turtle_ls)
- [tvm_ffi_navigator](#tvm_ffi_navigator)
- [twiggy_language_server](#twiggy_language_server)
- [typeprof](#typeprof)
- [typos_lsp](#typos_lsp)
Expand Down Expand Up @@ -12631,6 +12632,38 @@ require'lspconfig'.turtle_ls.setup{}
```


## tvm_ffi_navigator

https://github.com/tqchen/ffi-navigator

The Language Server for FFI calls in TVM to be able jump between python and C++

FFI navigator can be installed with `pip install ffi-navigator`, buf for more details, please see
https://github.com/tqchen/ffi-navigator?tab=readme-ov-file#installation



**Snippet to enable the language server:**
```lua
require'lspconfig'.tvm_ffi_navigator.setup{}
```


**Default values:**
- `cmd` :
```lua
{ "python", "-m", "ffi_navigator.langserver" }
```
- `filetypes` :
```lua
{ "python", "cpp" }
```
- `root_dir` :
```lua
see source file
```


## twiggy_language_server

https://github.com/moetelo/twiggy
Expand Down
33 changes: 33 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [tsserver](#tsserver)
- [ttags](#ttags)
- [turtle_ls](#turtle_ls)
- [tvm_ffi_navigator](#tvm_ffi_navigator)
- [twiggy_language_server](#twiggy_language_server)
- [typeprof](#typeprof)
- [typos_lsp](#typos_lsp)
Expand Down Expand Up @@ -12631,6 +12632,38 @@ require'lspconfig'.turtle_ls.setup{}
```


## tvm_ffi_navigator

https://github.com/tqchen/ffi-navigator

The Language Server for FFI calls in TVM to be able jump between python and C++

FFI navigator can be installed with `pip install ffi-navigator`, buf for more details, please see
https://github.com/tqchen/ffi-navigator?tab=readme-ov-file#installation



**Snippet to enable the language server:**
```lua
require'lspconfig'.tvm_ffi_navigator.setup{}
```


**Default values:**
- `cmd` :
```lua
{ "python", "-m", "ffi_navigator.langserver" }
```
- `filetypes` :
```lua
{ "python", "cpp" }
```
- `root_dir` :
```lua
see source file
```


## twiggy_language_server

https://github.com/moetelo/twiggy
Expand Down

0 comments on commit 652386d

Please sign in to comment.