https://github.com/Shougo/ddc-source-shell_native
Shell native completion for ddc.vim
https://github.com/Shougo/ddc-source-shell_native
ddc-source ddc-vim
Last synced: 10 months ago
JSON representation
Shell native completion for ddc.vim
- Host: GitHub
- URL: https://github.com/Shougo/ddc-source-shell_native
- Owner: Shougo
- License: mit
- Created: 2021-07-16T09:04:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T09:57:45.000Z (11 months ago)
- Last Synced: 2025-03-19T10:52:21.938Z (10 months ago)
- Topics: ddc-source, ddc-vim
- Language: Shell
- Homepage:
- Size: 37.1 KB
- Stars: 23
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddc-source-shell_native
Shell native completion for ddc.vim
## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### ddc.vim
https://github.com/Shougo/ddc.vim
### shell
One of the followings
- fish
- xonsh
- zsh and zsh/zpty module
## Configuration
```vim
call ddc#custom#patch_global('sources', ['shell_native'])
call ddc#custom#patch_global('sourceOptions', #{
\ shell_native: #{ mark: 'fish' },
\ })
call ddc#custom#patch_global('sourceParams', #{
\ shell_native: #{ shell: 'fish' },
\ })
```
## Original code
It includes
[zsh-capture-completion](https://github.com/Valodim/zsh-capture-completion) and
[deoplete-zsh](https://github.com/deoplete-plugins/deoplete-zsh)