Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LumaKernel/ddc-run
Deno.run() Completion for ddc.vim
https://github.com/LumaKernel/ddc-run
ddc-source ddc-vim
Last synced: 4 days 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 (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-20T13:00:05.000Z (about 3 years ago)
- Last Synced: 2024-08-01T17:40:04.820Z (3 months ago)
- Topics: ddc-source, ddc-vim
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddc-run
[![Doc](https://img.shields.io/badge/doc-%3Ah%20ddc--run-orange.svg?style=flat-square)](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')
" ...
```