Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

A source for ddc.vim to gather candidates from Universal Ctags
https://github.com/delphinus/ddc-ctags

ddc-source ddc-vim universal-ctags

Last synced: about 2 months ago
JSON representation

A source for ddc.vim to gather candidates from Universal Ctags

Awesome Lists containing this project

README

        

# ddc-ctags

Universal Ctags completion for ddc.vim

This source collects candidates from [Universal Ctags](https://github.com/universal-ctags/ctags).

## Required

### denops.vim

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

### ddc.vim

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

### Universal Ctags

https://github.com/universal-ctags/ctags

#### NOTE

You need **Universal Ctags**, neither the original Ctags nor [Exuberant Ctags](http://ctags.sourceforge.net/).

## Configuration

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

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