Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/delphinus/ddc-treesitter

A source for ddc.vim to gather candidates from nvim-treesitter
https://github.com/delphinus/ddc-treesitter

ddc-source ddc-vim nvim-treesitter

Last synced: about 2 months ago
JSON representation

A source for ddc.vim to gather candidates from nvim-treesitter

Awesome Lists containing this project

README

        

# ddc-treesitter

Treesitter completion for ddc.vim

This source collects candidates from [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter).

NOTE: This plugin needs Neovim >=v0.5.0

## Required

### denops.vim

https://github.com/vim-denops/denops.vim

### ddc.vim

https://github.com/Shougo/ddc.vim

### nvim-treesitter

https://github.com/nvim-treesitter/nvim-treesitter

## Configuration

```vim
" Use treesitter source.
call ddc#custom#patch_global('sources', ['treesitter'])

" Change source options
call ddc#custom#patch_global('sourceOptions', {
\ 'treesitter': {'mark': 'T'},
\ })
```