https://github.com/statiolake/ddc-ale
ALE source for ddc.vim
https://github.com/statiolake/ddc-ale
ddc-source ddc-vim
Last synced: 3 months ago
JSON representation
ALE source for ddc.vim
- Host: GitHub
- URL: https://github.com/statiolake/ddc-ale
- Owner: statiolake
- Created: 2021-08-12T08:49:57.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-30T07:27:29.000Z (almost 2 years ago)
- Last Synced: 2024-07-01T15:04:58.310Z (almost 2 years ago)
- Topics: ddc-source, ddc-vim
- Language: TypeScript
- Homepage:
- Size: 20.5 KB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ddc-ale
ALE source for ddc.vim.
## Requirements
- ddc.vim:
- ale.vim:
You also need denops.vim () to use
ddc.vim, which depends on Deno (). For more installation
details, please refer to each plugin's README.
## Example
```vim
# Enable ALE source
call ddc#custom#patch_global('sources', ['ale'])
# Option: cleanResultsWhitespace
call ddc#custom#patch_global('sourceParams',
\ {'ale': {'cleanResultsWhitespace': v:false}})
```
## Options
- `cleanResultsWhitespace`
Default: `v:false`
Whether it should remove the trailing whitespaces of each candidate
returned by ALE.
Usually you don't need to turn on this option Some LSPs (such as Rust
Analyzer) returne words containing trailing whitespaces. If you feel that's
unpleasant, you can fix the whitespace by turning this option to `v:true`.