Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Shougo/ddc-source-rtags
rtags completion for ddc.vim
https://github.com/Shougo/ddc-source-rtags
ddc-source ddc-vim
Last synced: 4 days ago
JSON representation
rtags completion for ddc.vim
- Host: GitHub
- URL: https://github.com/Shougo/ddc-source-rtags
- Owner: Shougo
- License: mit
- Created: 2021-09-20T04:17:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T04:58:11.000Z (2 months ago)
- Last Synced: 2024-10-11T18:27:35.809Z (23 days ago)
- Topics: ddc-source, ddc-vim
- Language: TypeScript
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddc-source-rtags
rtags completion for ddc.vim
This source collects items from rtags.
## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### ddc.vim
https://github.com/Shougo/ddc.vim
### rtags
https://github.com/Andersbakken/rtags
Note: You need to lunch "rdm" command in the background.
## Configuration
```vim
call ddc#custom#patch_global('sources', ['rtags'])call ddc#custom#patch_global('sourceOptions', #{
\ rtags: #{
\ mark: 'R',
\ dup: v:true,
\ forceCompletionPattern: '\.\w*|:\w*|->\w*' },
\ })
```