https://github.com/LumaKernel/ddc-run
Deno.run() Completion for ddc.vim
https://github.com/LumaKernel/ddc-run
ddc-source ddc-vim
Last synced: 3 months ago
JSON representation
Deno.run() Completion for ddc.vim
- Host: GitHub
- URL: https://github.com/LumaKernel/ddc-run
- Owner: LumaKernel
- License: mit
- Created: 2021-09-17T14:56:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-20T13:00:05.000Z (almost 4 years ago)
- Last Synced: 2025-03-24T10:50:27.656Z (3 months ago)
- Topics: ddc-source, ddc-vim
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddc-run
[](doc/ddc-run.txt)
Deno.run() Completion for ddc.vim
## Required
- [denops.vim](https://github.com/vim-denops/denops.vim)
- [ddc.vim](https://github.com/Shougo/ddc.vim)## Configuration
```vim
call ddc#custom#alias('source', 'win32yank.exe', 'run')
call ddc#custom#patch_global('sources', ['win32yank.exe'])
call ddc#custom#patch_global('sourceOptions', {
\ 'win32yank.exe': {
\ 'mark': 'CLIP',
\ }})
call ddc#custom#patch_global('sourceParams', {
\ 'win32yank.exe': {
\ 'cmd': ['win32yank.exe', '-o'],
\ }})call ddc#custom#alias('source', 'my-command', 'run')
" ...
```