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: 3 months ago
JSON representation
A source for ddc.vim to gather candidates from Universal Ctags
- Host: GitHub
- URL: https://github.com/delphinus/ddc-ctags
- Owner: delphinus
- License: other
- Created: 2021-08-30T13:13:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-06T04:33:27.000Z (over 1 year ago)
- Last Synced: 2024-10-30T19:42:42.550Z (4 months ago)
- Topics: ddc-source, ddc-vim, universal-ctags
- Language: TypeScript
- Homepage:
- Size: 14.6 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'},
\ })
```